/* ── TOKENS ─────────────────────────────────────── */
:root {
  --cream: #f5f0e8;
  --cream2: #ede8df;
  --white: #ffffff;
  --gold: #c9a84c;
  --gold-dark: #a8882e;
  --gold-light: #e8c96a;
  --gold-bg: rgba(201, 168, 76, 0.08);
  --gold-border: rgba(201, 168, 76, 0.25);
  --ink: #1a1510;
  --ink2: #3a3020;
  --ink3: #6a5e4a;
  --ink4: #9a9080;
  --ink5: #c8c0b0;
  --blue: #2563eb;
  --blue-bg: #eff6ff;
  --green: #16a34a;
  --green-bg: #f0fdf4;
  --purple: #7c3aed;
  --purple-bg: #f5f3ff;
  --red: #dc2626;
  --red-bg: #fef2f2;
  --border: #e8e0d0;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08), 0 8px 32px rgba(0, 0, 0, 0.06);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
}

/* ── NAV ── */
#main-nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 48px;
}

.nav-inner-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.3px;
}

.nav-logo-text span {
  color: var(--gold);
}

.nav-links-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links-list a {
  font-size: 14px;
  color: var(--ink3);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links-list a:hover {
  color: var(--ink);
}

.nav-cta-btn {
  background: var(--gold);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.2s;
}

.nav-cta-btn:hover {
  background: var(--gold-dark);
}

/* ── HERO ── */
#hero-section {
  background: var(--white);
  padding: 0;
}

.hero-layout {
  max-width: 1355px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  align-items: center;
  gap: 48px;
  padding: 72px 48px;
}

.hero-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.hero-eyebrow-dot-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-headline {
  font-size: 46px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 8px;
}

.hero-headline .hero-accent {
  color: var(--gold);
}

.hero-subtext {
  font-size: 16px;
  color: var(--ink3);
  margin: 18px 0 32px;
  line-height: 1.65;
  max-width: 460px;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 16px;
  font-size: 13px;
  color: var(--ink2);
  font-weight: 500;
}

.hero-chip i {
  font-size: 15px;
  color: var(--gold);
}

.hero-btn-group {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn-primary-gold {
  background: var(--gold);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: background 0.2s;
}

.btn-primary-gold:hover {
  background: var(--gold-dark);
}

.btn-outline-ink {
  background: transparent;
  color: var(--ink2);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.btn-outline-ink:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* HERO RIGHT mockup */
.hero-right-panel {
  position: relative;
}

.hero-mockup-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 20px;
  overflow: hidden;
}

.mockup-topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mockup-title-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.mockup-live-badge {
  background: var(--green-bg);
  color: var(--green);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.mockup-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.m-stat-box {
  background: var(--cream);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
}

.m-stat-num-val {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
}

.m-stat-label {
  font-size: 10px;
  color: var(--ink4);
  margin-top: 2px;
}

.mockup-chart-area {
  background: var(--cream);
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 16px;
}

.chart-bars-row {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
}

.chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
}

.chart-bar.bar-active {
  background: var(--gold);
  border-color: var(--gold);
}

.mockup-rows-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.m-row-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  background: var(--cream);
}

.m-row-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.m-row-label-txt {
  flex: 1;
  font-size: 12px;
  color: var(--ink2);
  font-weight: 500;
}

.m-row-value-txt {
  font-size: 11px;
  color: var(--ink4);
}

/* floating chips */
.floating-chip {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 14px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
}

.floating-chip i {
  font-size: 15px;
}

.float-chip-top {
  top: -18px;
  right: 20px;
  color: var(--blue);
}

.float-chip-top i {
  color: var(--blue);
}

.float-chip-bot {
  bottom: -14px;
  left: 10px;
  color: var(--green);
}

.float-chip-bot i {
  color: var(--green);
}

/* ── STATS BAR ── */
#stats-bar-section {
  background: var(--ink);
  padding: 40px 48px;
}

.stats-bar-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-bar-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-bar-item:last-child {
  border-right: none;
}

.stat-bar-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -1px;
}

.stat-bar-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 6px;
  letter-spacing: 0.5px;
}

/* ── FEATURES ── */
#features-section {
  background: var(--cream);
  padding: 80px 48px;
}

.features-layout {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.eyebrow-line-bar {
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.eyebrow-label-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.section-heading {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 8px;
}

.section-heading .section-accent {
  color: var(--gold);
}

.section-subtext {
  font-size: 15px;
  color: var(--ink3);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 48px;
}

.feat-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feat-card-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
}

.feat-card-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-border);
}

.feat-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--gold-bg);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feat-icon-box i {
  font-size: 22px;
  color: var(--gold);
}

.feat-card-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.feat-card-item p {
  font-size: 13px;
  color: var(--ink3);
  line-height: 1.6;
}

.feat-card-wide {
  grid-column: span 2;
}

/* ── PIPELINE ── */
#pipeline-section {
  background: var(--white);
  padding: 80px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pipeline-layout {
  max-width: 1200px;
  margin: 0 auto;
}

.pipeline-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.live-status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--green-bg);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
}

.live-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-anim 1.5s infinite;
}

@keyframes pulse-anim {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.pipeline-flow-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
}

.p-step-box {
  padding: 24px 16px;
  text-align: center;
  border-radius: 10px;
  position: relative;
}

.p-step-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.p-step-title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.p-step-sub {
  font-size: 11px;
  margin-top: 4px;
  font-weight: 500;
}

.pb-input {
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
}

.pb-input .p-step-label {
  color: #3b82f6;
}

.pb-input .p-step-title {
  color: #1d4ed8;
}

.pb-input .p-step-sub {
  color: #60a5fa;
}

.pb-router {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
}

.pb-router .p-step-label {
  color: #22c55e;
}

.pb-router .p-step-title {
  color: #15803d;
}

.pb-router .p-step-sub {
  color: #4ade80;
}

.pb-pool {
  background: #f5f3ff;
  border: 1.5px solid #ddd6fe;
}

.pb-pool .p-step-label {
  color: #8b5cf6;
}

.pb-pool .p-step-title {
  color: #6d28d9;
}

.pb-pool .p-step-sub {
  color: #a78bfa;
}

.pb-output {
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
}

.pb-output .p-step-label {
  color: #3b82f6;
}

.pb-output .p-step-title {
  color: #1d4ed8;
}

.pb-output .p-step-sub {
  color: #60a5fa;
}

.pipeline-arrow-sep {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--gold);
  font-size: 20px;
  font-weight: 700;
}

.pipeline-footer-desc {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink4);
}

/* ── WORKFLOWS ── */
#workflows-section {
  background: var(--cream);
  padding: 80px 48px;
}

.workflows-layout {
  max-width: 1200px;
  margin: 0 auto;
}

.wf-top-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.wf-chip-group {
  display: flex;
  gap: 8px;
}

.wf-chip-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
}

.wf-chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.wf-col-heads-row {
  display: grid;
  grid-template-columns: 120px 1fr 200px 110px;
  gap: 0;
  padding: 0 0 10px;
  border-bottom: 1.5px solid var(--border);
  margin-bottom: 8px;
}

.wf-col-head-cell {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink4);
  padding: 0 14px;
}

.wf-col-head-cell:first-child {
  padding-left: 0;
}

.wf-rows-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.wf-row-item {
  display: grid;
  grid-template-columns: 120px 1fr 200px 110px;
  align-items: stretch;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition:
    box-shadow 0.15s,
    border-color 0.15s;
}

.wf-row-item:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold-border);
}

.wf-sector-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  border-right: 1px solid var(--border);
}

.wf-sector-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
}

.s-bfsi-bg {
  background: #f0fdf4;
}

.s-bfsi-bg .wf-sector-label {
  color: #15803d;
}

.s-pol-bg {
  background: #fefce8;
}

.s-pol-bg .wf-sector-label {
  color: #a16207;
}

.s-ad-bg {
  background: #eff6ff;
}

.s-ad-bg .wf-sector-label {
  color: #1d4ed8;
}

.s-hr-bg {
  background: #f5f3ff;
}

.s-hr-bg .wf-sector-label {
  color: #6d28d9;
}

.s-leg-bg {
  background: #fef2f2;
}

.s-leg-bg .wf-sector-label {
  color: #b91c1c;
}

.wf-body-cell {
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  border-right: 1px solid var(--border);
}

.wf-task-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.wf-meta-row {
  font-size: 12px;
  color: var(--ink4);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 3px;
}

.wf-meta-row span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.wf-meta-row i {
  font-size: 13px;
}

.wf-progress-cell {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  border-right: 1px solid var(--border);
}

.prog-top-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
}

.prog-track-bar {
  height: 5px;
  background: var(--cream2);
  border-radius: 3px;
  overflow: hidden;
}

.prog-fill-bar {
  height: 100%;
  border-radius: 3px;
  transition: width 0.4s;
}

.wf-status-cell {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 20px;
}

.status-pill-badge .sp-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.sp-running {
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid rgba(22, 163, 74, 0.25);
}

.sp-running .sp-dot {
  background: var(--green);
}

.sp-done {
  background: var(--gold-bg);
  color: var(--gold-dark);
  border: 1px solid var(--gold-border);
}

.sp-done .sp-dot {
  background: var(--gold);
}

.sp-queued {
  background: var(--blue-bg);
  color: var(--blue);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.sp-queued .sp-dot {
  background: var(--blue);
}

/* ── INDUSTRIES ── */
#industries-section {
  background: var(--white);
  padding: 80px 48px;
  border-top: 1px solid var(--border);
}

.industries-layout {
  max-width: 1200px;
  margin: 0 auto;
}

.ind-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ind-card-tile {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
}

.ind-card-tile:hover {
  box-shadow: var(--shadow-md);
}

.ind-card-head {
  padding: 13px 18px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.3px;
}

.head-gold {
  background: var(--gold);
  color: #fff;
}

.head-dark {
  background: var(--ink);
  color: var(--gold);
}

.ind-card-body {
  background: var(--white);
  padding: 16px 18px;
}

.ind-card-body ul {
  list-style: none;
}

.ind-card-body li {
  font-size: 13px;
  color: var(--ink2);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-bottom: 1px solid var(--cream2);
}

.ind-card-body li:last-child {
  border-bottom: none;
}

.ind-square-dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 1px;
  flex-shrink: 0;
  margin-top: 4px;
}

.ind-span-two {
  grid-column: 1/3;
}

/* ══════════════════════════════════════════════════
       AI & LLMs SECTION — NEW
    ══════════════════════════════════════════════════ */
#ai-llms-section {
  background: var(--ink);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}

/* animated background grid */
#ai-llms-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: grid-drift 20s linear infinite;
  pointer-events: none;
}

@keyframes grid-drift {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(48px);
  }
}

/* radial glow */
#ai-llms-section::after {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.ai-llms-layout {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* header */
.ai-llms-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 72px;
}

.ai-llms-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.ai-llms-eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.ai-llms-eyebrow-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.ai-llms-headline {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.2px;
  color: var(--white);
  margin-bottom: 20px;
}

.ai-llms-headline .ai-accent {
  color: var(--gold);
}

.ai-llms-desc {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  max-width: 460px;
}

/* right side — glowing terminal card */
.ai-terminal-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.ai-terminal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.terminal-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.td-red {
  background: #ff5f57;
}

.td-yellow {
  background: #ffbd2e;
}

.td-green {
  background: #28ca41;
}

.terminal-title {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  font-family: "Courier New", monospace;
}

.terminal-body {
  font-family: "Courier New", monospace;
  font-size: 13px;
  line-height: 1.9;
}

.t-line-comment {
  color: rgba(201, 168, 76, 0.5);
}

.t-line-key {
  color: rgba(255, 255, 255, 0.35);
}

.t-line-val {
  color: var(--gold);
}

.t-line-str {
  color: #7dd3fc;
}

.t-line-num {
  color: #86efac;
}

.t-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  background: var(--gold);
  vertical-align: -2px;
  animation: cursor-blink 1s step-end infinite;
}

@keyframes cursor-blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* capabilities + use cases grid */
.ai-two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}

.ai-col-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 32px 28px;
  transition:
    border-color 0.3s,
    background 0.3s;
  position: relative;
  overflow: hidden;
}

.ai-col-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.04);
}

.ai-col-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.ai-col-card:hover::after {
  transform: scaleX(1);
}

.ai-card-header-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.ai-card-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-card-icon-wrap i {
  font-size: 22px;
  color: var(--gold);
}

.ai-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.2px;
}

.ai-card-subtitle {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 2px;
}

.ai-list-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ai-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition:
    background 0.2s,
    border-color 0.2s;
}

.ai-list-item:hover {
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.15);
}

.ai-list-bullet {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.ai-list-bullet i {
  font-size: 11px;
  color: var(--gold);
}

.ai-list-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* floating metric chips inside section */
.ai-metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ai-metric-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  transition:
    transform 0.2s,
    border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.ai-metric-chip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ai-metric-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 168, 76, 0.4);
}

.ai-metric-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.8px;
  margin-bottom: 4px;
}

.ai-metric-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.3px;
}

/* scroll-reveal */
.reveal-on-scroll {
  opacity: 1;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* hover-glow on feat cards */
.feat-card-item {
  transition:
    box-shadow 0.2s,
    border-color 0.2s,
    transform 0.2s;
}

.feat-card-item:hover {
  transform: translateY(-2px);
}

/* ── FOOTER ── */
#main-footer {
  background: var(--ink);
  padding: 40px 48px 28px;
  border-top: 3px solid var(--gold);
}

.footer-layout {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.3px;
}

.footer-brand-name span {
  color: var(--gold);
}

.footer-brand-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 8px;
  line-height: 1.6;
}

.footer-col-block h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 14px;
}

.footer-col-block a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.15s;
}

.footer-col-block a:hover {
  color: var(--gold);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* --------------------------------------------new css added------------------------------------------ */
/* ===============================
   MOBILE RESPONSIVE FIX
==================================*/

@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    overflow-x: hidden;
  }

  * {
    box-sizing: border-box;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  section {
    overflow: hidden;
  }

  /* HERO */

  .hero-layout {
    display: flex;
    flex-direction: column;

    padding: 35px 20px;

    gap: 30px;

    min-height: auto;

    max-width: 100%;
    margin-top: 51px;
  }

  .hero-left-panel,
  .hero-right-panel {
    width: 100%;
  }

  .hero-headline {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero-subtext {
    max-width: 100%;
  }

  .hero-btn-group {
    flex-direction: column;

    width: 100%;
  }

  .hero-btn-group button {
    width: 100%;
  }

  .hero-mockup-card {
    width: 100%;
  }

  .mockup-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .floating-chip {
    position: relative;

    left: auto;

    right: auto;

    top: auto;

    bottom: auto;

    margin-top: 15px;

    width: fit-content;
  }

  /* Stats */

  .stats-bar-layout {
    grid-template-columns: 1fr 1fr;

    gap: 20px;
  }

  /* Features */

  .feat-cards-grid {
    grid-template-columns: 1fr;
  }

  .feat-card-wide {
    grid-column: auto;
  }

  /* Pipeline */

  .pipeline-flow-grid {
    grid-template-columns: 1fr;

    gap: 15px;
  }

  .pipeline-arrow-sep {
    transform: rotate(90deg);
  }

  /* Workflow */

  .wf-top-row {
    flex-direction: column;

    align-items: flex-start;

    gap: 20px;
  }

  .wf-col-heads-row {
    display: none;
  }

  .wf-row-item {
    display: flex;

    flex-direction: column;
  }

  .wf-sector-cell,
  .wf-body-cell,
  .wf-progress-cell,
  .wf-status-cell {
    border-right: none;

    border-bottom: 1px solid #eee;
  }

  /* AI */

  .ai-llms-header {
    grid-template-columns: 1fr;
  }

  .ai-two-col-grid {
    grid-template-columns: 1fr;
  }

  .ai-metrics-row {
    grid-template-columns: 1fr 1fr;
  }

  /* Footer */

  .footer-top-grid {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .footer-bottom-bar {
    flex-direction: column;

    gap: 15px;
  }
}

/* -------------------------------industrial-section------------------- */
/* ===========================
   Industries Responsive
=========================== */

@media (max-width: 992px) {
  #industries-section {
    padding: 60px 24px;
  }

  .industries-layout {
    max-width: 100%;
  }

  .ind-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .ind-span-two {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  #industries-section {
    padding: 50px 18px;
  }

  .section-heading {
    font-size: 30px;
    line-height: 1.2;
  }

  .section-subtext {
    max-width: 100%;
    margin-bottom: 35px;
  }

  .ind-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ind-span-two {
    grid-column: auto;
  }

  .ind-card-tile {
    width: 100%;
    overflow: hidden;
  }

  .ind-card-head {
    font-size: 16px;
    padding: 15px 20px;
  }

  .ind-card-body {
    padding: 18px;
  }

  .ind-card-body li {
    font-size: 14px;
    line-height: 1.6;
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  #industries-section {
    padding: 40px 15px;
  }

  .section-heading {
    font-size: 26px;
  }

  .section-subtext {
    font-size: 14px;
  }

  .ind-card-head {
    font-size: 15px;
  }

  .ind-card-body {
    padding: 16px;
  }

  .ind-card-body li {
    font-size: 13px;
  }
}
