:root {
  --ink: #0c0c14;
  --ink2: #16162a;
  --surface: #f7f6f2;
  --surface2: #eeecea;
  --white: #ffffff;
  --gray: #72728a;
  --border: rgba(12,12,20,0.09);
  --border-light: rgba(255,255,255,0.11);

  /* Pillar palette */
  --c1: #ff4800;      /* Composable — orange */
  --c1-soft: #ff7140;
  --c1-bg: rgba(255,72,0,0.07);

  --c2: #7c3aed;      /* Agentic — violet */
  --c2-soft: #a26af8;
  --c2-bg: rgba(124,58,237,0.08);

  --c3: #00b389;      /* Autonomous — teal */
  --c3-soft: #34d4ad;
  --c3-bg: rgba(0,179,137,0.08);

  --gold: #f0c040;

  --font-display: 'Cabinet Grotesk', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--surface); color: var(--ink); overflow-x: hidden; }

/* ══ SCROLLBAR ══ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: var(--ink2); border-radius: 3px; }

/* ══ XCAAS BADGE ══ */
.xcaas-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px; border-radius: 100px;
  background: linear-gradient(90deg, rgba(255,72,0,0.15), rgba(124,58,237,0.15));
  border: 1px solid rgba(255,255,255,0.2);
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
}
.xcaas-badge .xcaas-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: pulse 2s infinite;
}

/* ══ ARCH IMAGE SECTION ══ */
.arch-image-wrap {
  margin-top: 56px; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 120px rgba(0,0,0,0.5);
  position: relative;
}
.arch-image-wrap img {
  width: 100%; display: block;
}
/* Layer 3 split panel responsive */
@media (max-width: 768px) {
  .arch-layer3-split { grid-template-columns: 1fr !important; }
  .arch-layer3-split > div:first-child { border-right: none !important; border-bottom: 1px solid rgba(124,58,237,0.18); }
}

/* ══ NAV ══ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 88px;
  background: rgba(247,246,242,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
  font-family: var(--font-display); font-weight: 900; font-size: 1.05rem;
  letter-spacing: -0.03em;
}
.logo-mark {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--ink); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 0.78rem; font-weight: 900; letter-spacing: -0.02em;
}
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; color: var(--ink);
  text-decoration: none; opacity: 0.6; transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }
.nav-right { display: flex; gap: 10px; align-items: center; }

/* ══ BUTTONS ══ */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px; border-radius: 7px; font-family: var(--font-body);
  font-weight: 600; font-size: 0.875rem; text-decoration: none;
  cursor: pointer; border: none; transition: all 0.18s; white-space: nowrap;
}
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--border); }
.btn-ghost:hover { background: var(--surface2); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--ink2); transform: translateY(-1px); }
.btn-c1 { background: var(--c1); color: var(--white); }
.btn-c1:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,72,0,0.28); }
.btn-c2 { background: var(--c2); color: var(--white); }
.btn-c2:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(124,58,237,0.28); }
.btn-c3 { background: var(--c3); color: var(--white); }
.btn-c3:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,179,137,0.28); }
.btn-lg { padding: 14px 30px; font-size: 1rem; border-radius: 9px; }

/* ══ HERO ══ */
.hero {
  min-height: 100vh; background: var(--ink);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 100px 48px 72px; position: relative; overflow: hidden;
}
.hero-noise {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-orb1 {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,72,0,0.22) 0%, transparent 65%);
  top: -120px; right: -60px; pointer-events: none;
  animation: orb 9s ease-in-out infinite;
}
.hero-orb2 {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 65%);
  bottom: 0; left: 5%; pointer-events: none;
  animation: orb 12s ease-in-out infinite reverse;
}
.hero-orb3 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,179,137,0.14) 0%, transparent 65%);
  top: 30%; left: 40%; pointer-events: none;
  animation: orb 15s ease-in-out infinite;
}
@keyframes orb {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.08); }
  66% { transform: translate(-20px,30px) scale(0.95); }
}

.hero-eyebrow {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 30px; opacity: 0; animation: fadeUp 0.7s 0.2s forwards;
}
.hero-eyebrow .pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.3; transform: scale(0.7); } }

.hero h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(3.2rem, 6.5vw, 7.2rem);
  letter-spacing: -0.05em; line-height: 0.93;
  color: var(--white); max-width: 960px;
  opacity: 0; animation: fadeUp 0.8s 0.35s forwards;
}
.h1-c1 { color: var(--c1); }
.h1-c2 { color: var(--c2-soft); }
.h1-c3 { color: var(--c3-soft); }

.hero-sub {
  margin-top: 28px; max-width: 600px;
  font-size: 1.1rem; font-weight: 400; color: rgba(255,255,255,0.5); line-height: 1.65;
  opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
}

.hero-ctas {
  margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 0.65s forwards;
}

.hero-pillars {
  margin-top: 72px; padding-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  opacity: 0; animation: fadeUp 0.8s 0.8s forwards;
}
.hero-pillar {
  padding: 28px 32px; border-radius: 12px;
  transition: all 0.3s;
}
.hero-pillar:hover { transform: translateY(-4px); }
.hp-1 { background: rgba(255,72,0,0.1); border: 1px solid rgba(255,72,0,0.2); }
.hp-2 { background: rgba(124,58,237,0.1); border: 1px solid rgba(124,58,237,0.2); }
.hp-3 { background: rgba(0,179,137,0.1); border: 1px solid rgba(0,179,137,0.2); }

.hp-label {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 10px;
}
.hp-1 .hp-label { color: var(--c1-soft); }
.hp-2 .hp-label { color: var(--c2-soft); }
.hp-3 .hp-label { color: var(--c3-soft); }

.hp-title {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.03em; margin-bottom: 8px;
}
.hp-desc { font-size: 0.83rem; color: rgba(255,255,255,0.4); line-height: 1.55; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══ SHARED SECTION ══ */
.sec { padding: 100px 48px; }
.sec-dark { background: var(--ink); }
.sec-mid { background: var(--surface2); }
.sec-white { background: var(--white); }

.label {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 14px;
}
.label-c1 { color: var(--c1); }
.label-c2 { color: var(--c2-soft); }
.label-c3 { color: var(--c3); }
.label-gold { color: var(--gold); }
.label-gray { color: var(--gray); }

.sec-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  letter-spacing: -0.04em; line-height: 1.0;
}
.sec-title.light { color: var(--white); }
.sec-sub {
  margin-top: 14px; font-size: 1.02rem; color: var(--gray);
  line-height: 1.65; max-width: 580px;
}
.sec-sub.light { color: rgba(255,255,255,0.45); }

/* ══ PILLAR NAV TABS ══ */
.pillar-tabs {
  display: flex; gap: 0; border-bottom: 2px solid var(--border);
  margin-bottom: 60px; overflow-x: auto;
}
.pillar-tab {
  padding: 14px 28px; font-family: var(--font-body); font-weight: 600;
  font-size: 0.9rem; cursor: pointer; border: none; background: transparent;
  color: var(--gray); border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: all 0.2s; white-space: nowrap;
}
.pillar-tab:hover { color: var(--ink); }
.pillar-tab.active-c1 { color: var(--c1); border-bottom-color: var(--c1); }
.pillar-tab.active-c2 { color: var(--c2); border-bottom-color: var(--c2); }
.pillar-tab.active-c3 { color: var(--c3); border-bottom-color: var(--c3); }

/* ══ SOLUTION ARCHITECTURE ══ */
.arch-wrap {
  max-width: 1100px; margin: 64px auto 0;
  display: flex; flex-direction: column; gap: 6px;
}
.arch-row {
  border-radius: 12px; padding: 28px 36px; position: relative; overflow: hidden;
  transition: transform 0.25s;
  cursor: default;
}
.arch-row:hover { transform: scale(1.008); }
.ar-cx   { background: rgba(240,192,64,0.08); border: 1px solid rgba(240,192,64,0.25); }
.ar-comp { background: rgba(255,72,0,0.07);   border: 1px solid rgba(255,72,0,0.22);  margin: 0 18px; }
.ar-data { background: rgba(124,58,237,0.07); border: 1px solid rgba(124,58,237,0.2); margin: 0 36px; }
.ar-mach { background: rgba(0,179,137,0.06);  border: 1px solid rgba(0,179,137,0.18); margin: 0 54px; }

.ar-eyebrow {
  font-family: var(--font-mono); font-size: 0.63rem; letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 10px;
}
.ar-cx .ar-eyebrow   { color: var(--gold); }
.ar-comp .ar-eyebrow { color: var(--c1-soft); }
.ar-data .ar-eyebrow { color: var(--c2-soft); }
.ar-mach .ar-eyebrow { color: var(--c3-soft); }

.ar-title {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  color: var(--white); letter-spacing: -0.025em; margin-bottom: 14px;
}
.ar-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  padding: 4px 12px; border-radius: 100px; font-size: 0.75rem;
  font-weight: 500; white-space: nowrap;
}
.chip-gold   { background: rgba(240,192,64,0.12);  color: var(--gold);   border: 1px solid rgba(240,192,64,0.25); }
.chip-orange { background: rgba(255,72,0,0.1);     color: #ff7a4a;       border: 1px solid rgba(255,72,0,0.22); }
.chip-violet { background: rgba(124,58,237,0.1);   color: var(--c2-soft);border: 1px solid rgba(124,58,237,0.22); }
.chip-teal   { background: rgba(0,179,137,0.1);    color: var(--c3-soft);border: 1px solid rgba(0,179,137,0.2); }
.chip-white  { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.1); }

.ar-connector {
  text-align: center; color: rgba(255,255,255,0.15); font-size: 1.1rem; padding: 2px 0;
}

/* ══ COMPOSABLE PRICING ══ */
.pricing-grid-4 {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-top: 52px;
}
.plan {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 36px 30px; position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex; flex-direction: column;
}
.plan:hover { transform: translateY(-5px); box-shadow: 0 20px 52px rgba(0,0,0,0.08); }
.plan.featured { background: var(--ink); border-color: transparent; }
.plan.featured-c2 { background: var(--c2); border-color: transparent; }

.plan-flag {
  display: inline-block; padding: 3px 11px; border-radius: 100px;
  font-family: var(--font-mono); font-size: 0.63rem; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 20px; align-self: flex-start;
}
.flag-c1 { background: var(--c1-bg); color: var(--c1); border: 1px solid rgba(255,72,0,0.22); }
.flag-hot { background: rgba(255,72,0,0.9); color: var(--white); }
.flag-c2 { background: var(--c2-bg); color: var(--c2); border: 1px solid rgba(124,58,237,0.2); }
.flag-c3 { background: var(--c3-bg); color: var(--c3); border: 1px solid rgba(0,179,137,0.2); }
.flag-ink { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.65); }
.flag-violet { background: rgba(255,255,255,0.15); color: var(--white); }
.flag-gold { background: rgba(240,192,64,0.15); color: var(--gold); }

.plan-name {
  font-family: var(--font-display); font-weight: 900; font-size: 1.7rem;
  letter-spacing: -0.04em; color: var(--ink); margin-bottom: 4px;
}
.plan.featured .plan-name, .plan.featured-c2 .plan-name { color: var(--white); }
.plan-for { font-size: 0.8rem; color: var(--gray); margin-bottom: 24px; line-height: 1.4; }
.plan.featured .plan-for, .plan.featured-c2 .plan-for { color: rgba(255,255,255,0.45); }

.price-row { margin-bottom: 6px; display: flex; align-items: baseline; gap: 4px; }
.price-curr { font-size: 1.2rem; font-weight: 700; color: var(--ink); }
.plan.featured .price-curr { color: var(--gold); }
.plan.featured-c2 .price-curr { color: rgba(255,255,255,0.8); }
.price-num {
  font-family: var(--font-display); font-weight: 900; font-size: 2.4rem;
  letter-spacing: -0.05em; color: var(--ink); line-height: 1;
}
.plan.featured .price-num { color: var(--gold); }
.plan.featured-c2 .price-num { color: var(--white); }
.price-custom {
  font-family: var(--font-display); font-weight: 900; font-size: 1.6rem;
  letter-spacing: -0.04em; color: var(--ink); line-height: 1.2; padding: 8px 0;
}
.plan.featured .price-custom { color: var(--gold); }
.price-note { font-size: 0.75rem; color: var(--gray); margin-bottom: 26px; line-height: 1.4; }
.plan.featured .price-note, .plan.featured-c2 .price-note { color: rgba(255,255,255,0.35); }

.plan-divider { height: 1px; background: var(--border); margin-bottom: 22px; }
.plan.featured .plan-divider, .plan.featured-c2 .plan-divider { background: rgba(255,255,255,0.12); }

.features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.features li {
  display: flex; gap: 9px; align-items: flex-start;
  font-size: 0.83rem; color: var(--gray); line-height: 1.4;
}
.plan.featured .features li { color: rgba(255,255,255,0.55); }
.plan.featured-c2 .features li { color: rgba(255,255,255,0.7); }

.fcheck {
  width: 17px; height: 17px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  display: flex; align-items: center; justify-content: center; font-size: 0.6rem;
}
.fcheck-c1 { background: rgba(255,72,0,0.1); color: var(--c1); }
.fcheck-c2 { background: rgba(124,58,237,0.12); color: var(--c2-soft); }
.fcheck-c3 { background: rgba(0,179,137,0.1); color: var(--c3); }
.fcheck-gold { background: rgba(240,192,64,0.15); color: var(--gold); }
.fcheck-white { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); }
.fcheck-violet { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.85); }

.plan-cta-wrap { margin-top: 28px; }
.plan-cta {
  display: block; text-align: center; padding: 12px 16px; border-radius: 8px;
  font-weight: 600; font-size: 0.875rem; text-decoration: none; transition: all 0.2s;
  cursor: pointer; border: none; font-family: var(--font-body); width: 100%;
}
.pcta-c1 { background: var(--c1); color: var(--white); }
.pcta-c1:hover { filter: brightness(1.1); box-shadow: 0 6px 20px rgba(255,72,0,0.3); }
.pcta-dark { background: var(--ink); color: var(--white); }
.pcta-dark:hover { background: var(--ink2); }
.pcta-outline { background: transparent; color: var(--ink); border: 1px solid var(--border); }
.pcta-outline:hover { background: var(--surface2); }
.pcta-gold { background: var(--gold); color: var(--ink); }
.pcta-gold:hover { filter: brightness(1.05); box-shadow: 0 6px 20px rgba(240,192,64,0.35); }
.pcta-c2 { background: var(--white); color: var(--c2); }
.pcta-c2:hover { background: rgba(255,255,255,0.9); }
.pcta-c3 { background: var(--c3); color: var(--white); }
.pcta-c3:hover { filter: brightness(1.08); box-shadow: 0 6px 20px rgba(0,179,137,0.3); }
.pcta-c3-outline { background: transparent; color: var(--c3); border: 2px solid var(--c3); }
.pcta-c3-outline:hover { background: rgba(0,179,137,0.08); }

/* ══ AGENTIC GRID ══ */
.agentic-pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 20px; margin-top: 52px;
}
.uc-ai-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 12px; border-radius: 100px;
  background: rgba(124,58,237,0.12); color: var(--c2-soft);
  border: 1px solid rgba(124,58,237,0.22);
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 20px; align-self: flex-start;
}
.uc-ai-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c2-soft); animation: pulse 2s infinite; }

.agentic-hero-card {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--c2), #4c1d95);
  border-radius: 16px; padding: 44px 48px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  position: relative; overflow: hidden;
}
.ahc-glow {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 65%);
  top: -100px; right: -100px; pointer-events: none;
}
.ahc-label {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 12px;
}
.ahc-title {
  font-family: var(--font-display); font-weight: 900; font-size: 2.4rem;
  color: var(--white); letter-spacing: -0.04em; line-height: 1.0; margin-bottom: 12px;
}
.ahc-sub { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 28px; }
.ahc-right { display: flex; flex-direction: column; gap: 14px; }
.ahc-capability {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 16px 20px;
}
.ahc-cap-label {
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--c2-soft); margin-bottom: 5px;
}
.ahc-cap-text { font-size: 0.84rem; color: rgba(255,255,255,0.65); line-height: 1.45; }

/* ══ AGENTIC PLANS ══ */
.agentic-plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 20px; }

/* ══ AUTONOMOUS AGENTS ══ */
.agents-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 16px; margin-top: 52px;
}
.agent-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 32px 28px;
  transition: all 0.25s;
}
.agent-card:hover {
  border-color: var(--c3);
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0,179,137,0.1);
}
.agent-icon { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.agent-name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  color: var(--ink); letter-spacing: -0.025em; margin-bottom: 8px;
}
.agent-desc { font-size: 0.83rem; color: var(--gray); line-height: 1.55; margin-bottom: 16px; }
.agent-actions {
  display: flex; flex-wrap: wrap; gap: 5px;
}
.agent-action {
  padding: 3px 9px; border-radius: 100px;
  background: var(--c3-bg); color: var(--c3);
  border: 1px solid rgba(0,179,137,0.2);
  font-size: 0.71rem; font-weight: 500;
}

/* ══ AUTONOMOUS PRICING ══ */
.autonomous-pricing {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-top: 52px;
}

/* ══ INCLUDED STRIP ══ */
.included-strip {
  background: var(--ink2); padding: 44px 48px; border-radius: 16px;
  margin-top: 48px;
}
.included-strip-title {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 28px;
}
.included-items {
  display: grid; grid-template-columns: repeat(6,1fr); gap: 16px;
}
.inc-item { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.inc-icon { font-size: 1.5rem; }
.inc-label { font-size: 0.72rem; font-weight: 500; color: rgba(255,255,255,0.4); line-height: 1.3; }

/* ══ TOGGLE ══ */
.billing-toggle {
  display: flex; align-items: center; gap: 0;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 8px; padding: 4px;
}
.tog {
  padding: 8px 20px; border-radius: 6px; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.83rem; font-weight: 600;
  background: transparent; color: var(--gray); transition: all 0.18s;
}
.tog.on { background: var(--ink); color: var(--white); }
.save-tag {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.08em;
  background: rgba(0,179,137,0.15); color: var(--c3);
  border: 1px solid rgba(0,179,137,0.2); border-radius: 100px;
  padding: 2px 9px; margin-left: 8px;
}

/* ══ PILLAR SECTION HEADER ══ */
.pillar-sec-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 16px;
}

/* ══ WHY UC ══ */
.why-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
  margin-top: 52px; border: 1px solid var(--border); border-radius: 16px; overflow: hidden;
}
.why-card {
  padding: 40px 34px; background: var(--white);
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  transition: all 0.25s;
}
.why-card:nth-child(3n) { border-right: none; }
.why-card:nth-child(n+4) { border-bottom: none; }
.why-card:hover { background: var(--ink); }
.why-card:hover .wc-num { color: rgba(255,255,255,0.12); }
.why-card:hover .wc-title { color: var(--white); }
.why-card:hover .wc-body { color: rgba(255,255,255,0.45); }
.wc-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 900;
  color: var(--surface2); letter-spacing: -0.05em; line-height: 1;
  margin-bottom: 20px; transition: color 0.25s;
}
.wc-title {
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 800;
  color: var(--ink); letter-spacing: -0.025em; margin-bottom: 10px;
  transition: color 0.25s;
}
.wc-body { font-size: 0.84rem; color: var(--gray); line-height: 1.6; transition: color 0.25s; }

/* ══ COMPARE ══ */
.compare-table {
  width: 100%; border-collapse: collapse; margin-top: 52px; font-size: 0.84rem;
}
.compare-table th {
  padding: 14px 20px; text-align: left; border-bottom: 2px solid var(--ink);
  font-family: var(--font-display); font-weight: 800; font-size: 0.95rem; letter-spacing: -0.02em;
}
.compare-table td {
  padding: 13px 20px; border-bottom: 1px solid var(--border); color: var(--gray);
  vertical-align: middle;
}
.compare-table td:first-child { color: var(--ink); font-weight: 500; }
.compare-table .col-uc { background: rgba(255,72,0,0.04); font-weight: 600; color: var(--ink) !important; }
.compare-table thead .col-uc { background: var(--c1); color: var(--white) !important; }
.yes-mark { color: #00b856; font-size: 1rem; }
.no-mark { color: #d0d0d8; font-size: 0.9rem; }
.par-mark { font-size: 0.75rem; font-weight: 600; color: #f5a623; }

/* ══ CTA BAND ══ */
.cta-band {
  background: linear-gradient(135deg, var(--c1) 0%, #c93900 100%);
  padding: 90px 48px; text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  color: var(--white); letter-spacing: -0.04em; line-height: 1.0; margin-bottom: 18px;
}
.cta-band p { font-size: 1.05rem; color: rgba(255,255,255,0.7); max-width: 480px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; }
.btn-white { background: var(--white); color: var(--c1); font-weight: 700; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.btn-woutline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.45); font-weight: 600; }
.btn-woutline:hover { border-color: var(--white); }

/* ══ FOOTER ══ */
footer { background: var(--ink); padding: 72px 48px 36px; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 56px;
  padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-name {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 900; font-size: 1rem;
  color: var(--white); text-decoration: none; margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.footer-tagline { font-size: 0.83rem; color: rgba(255,255,255,0.3); line-height: 1.6; max-width: 240px; }
.footer-address { font-size: 0.75rem; color: rgba(255,255,255,0.18); margin-top: 18px; line-height: 1.6; }
.fcol-title {
  font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 18px;
}
.flinks { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.flinks a { font-size: 0.84rem; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.18s; }
.flinks a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  padding-top: 28px; display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 0.76rem; color: rgba(255,255,255,0.2); }
.footer-built { font-family: var(--font-mono); font-size: 0.65rem; color: rgba(255,255,255,0.15); letter-spacing: 0.08em; }

/* ══ SCROLL REVEAL ══ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s, transform 0.55s; }
.revealed { opacity: 1; transform: none; }

/* ══ RESPONSIVE ══ */
@media (max-width: 1024px) {
  .pricing-grid-4 { grid-template-columns: 1fr 1fr; }
  .agentic-hero-card { grid-template-columns: 1fr; }
  .agentic-hero-card { grid-column: span 3; }
  .agentic-plans { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links, .nav-right .btn-ghost { display: none; }
  .sec, .hero { padding: 72px 20px 52px; }
  .hero { padding: 90px 20px 52px; }
  .pricing-grid-4, .agentic-pricing-grid, .agents-grid, .autonomous-pricing,
  .agentic-plans, .why-grid, .hero-pillars { grid-template-columns: 1fr; }
  .agentic-hero-card { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .included-items { grid-template-columns: repeat(3,1fr); }
  .cta-actions { flex-direction: column; align-items: center; }
  .pillar-sec-header { flex-direction: column; align-items: flex-start; }
}
/* ══ V6 NAV LOGO IMAGE ══ */
.nav-logo-img {
  height: 56px; width: auto; display: block;
  object-fit: contain;
}
/* ══ V6 DROPDOWN NAV ══ */
.nav-links { position: relative; }
.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: " ▾"; font-size: 0.6rem; opacity: 0.5;
}
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  padding-top: 12px; /* invisible buffer so mouse can travel down */
  z-index: 9999; min-width: 280px;
  /* the visible menu box is on the inner div */
}
.dropdown-inner {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 0;
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
  list-style: none;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block; padding: 10px 20px;
  font-size: 0.84rem; color: var(--ink) !important; opacity: 1 !important;
  text-decoration: none; transition: background 0.15s;
  border-radius: 6px; margin: 0 4px; white-space: nowrap;
}
.dropdown li a:hover { background: var(--surface2); }
.dropdown-divider { height: 1px; background: var(--border); margin: 6px 12px; pointer-events: none; }

/* ══ V6 PAGE HERO (subpages) ══ */
.page-hero {
  padding: 180px 48px 80px; background: var(--ink);
  position: relative; overflow: hidden;
}
.page-hero-orb {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  pointer-events: none;
  animation: orb 12s ease-in-out infinite;
}
.page-hero h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(2.6rem,5vw,5.5rem);
  letter-spacing: -0.05em; line-height: 0.95; color: var(--white);
  max-width: 800px; margin-bottom: 24px;
}
.page-hero p {
  font-size: 1.1rem; color: rgba(255,255,255,0.5);
  max-width: 620px; line-height: 1.65;
}

/* ══ V6 CARD GRID ══ */
.card-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 52px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 52px; }
.content-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 36px 32px; transition: all 0.25s;
}
.content-card:hover { transform: translateY(-4px); box-shadow: 0 20px 52px rgba(0,0,0,0.08); border-color: var(--ink); }
.card-icon { font-size: 2.4rem; margin-bottom: 18px; display: block; }
.card-title {
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  color: var(--ink); letter-spacing: -0.025em; margin-bottom: 10px;
}
.card-body { font-size: 0.875rem; color: var(--gray); line-height: 1.65; }
.card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.card-tag {
  padding: 3px 10px; border-radius: 100px; font-size: 0.72rem; font-weight: 500;
  background: var(--surface2); color: var(--gray);
}

/* ══ V6 TEAM GRID ══ */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 52px; }
.team-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 32px 24px; text-align: center; transition: all 0.25s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.07); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 1.3rem;
  color: var(--white); letter-spacing: -0.03em;
}
.team-name { font-family: var(--font-display); font-weight: 800; font-size: 1rem;
  color: var(--ink); letter-spacing: -0.025em; margin-bottom: 4px; }
.team-role { font-size: 0.8rem; color: var(--gray); margin-bottom: 12px; line-height: 1.4; }
.team-bio { font-size: 0.78rem; color: var(--gray); line-height: 1.55; }

/* ══ V6 STATS BAND ══ */
.stats-band {
  background: var(--ink); padding: 60px 48px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 32px;
}
.stat-box { text-align: center; }
.stat-box-num {
  font-family: var(--font-display); font-weight: 900; font-size: 3rem;
  letter-spacing: -0.05em; line-height: 1; margin-bottom: 8px;
}
.stat-box-label { font-size: 0.82rem; color: rgba(255,255,255,0.4); letter-spacing: 0.02em; }

/* ══ V6 TIMELINE ══ */
.timeline { position: relative; margin-top: 52px; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--c1), var(--c2), var(--c3));
}
.timeline-item { position: relative; padding: 0 0 48px 40px; }
.timeline-item::before {
  content: ''; position: absolute; left: -7px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--c1);
}
.tl-year {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em;
  color: var(--c1); text-transform: uppercase; margin-bottom: 6px;
}
.tl-title {
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  color: var(--ink); letter-spacing: -0.025em; margin-bottom: 8px;
}
.tl-body { font-size: 0.875rem; color: var(--gray); line-height: 1.6; max-width: 640px; }

/* ══ V6 INDUSTRY HERO CARDS ══ */
.industry-hero-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 52px;
}
.industry-hero-card {
  border-radius: 14px; padding: 36px 30px; position: relative; overflow: hidden;
  transition: transform 0.25s; cursor: default;
}
.industry-hero-card:hover { transform: translateY(-4px); }
.ihc-icon { font-size: 2.8rem; margin-bottom: 18px; display: block; }
.ihc-name {
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
  color: var(--white); letter-spacing: -0.03em; margin-bottom: 10px;
}
.ihc-desc { font-size: 0.84rem; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 18px; }
.ihc-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.ihc-pill {
  padding: 3px 10px; border-radius: 100px; font-size: 0.7rem; font-weight: 500;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}

/* ══ V6 RESPONSIVE ADDITIONS ══ */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(2,1fr); }
  .card-grid-3 { grid-template-columns: repeat(2,1fr); }
  .stats-band { grid-template-columns: repeat(2,1fr); }
  .industry-hero-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav { padding: 0 20px; height: 72px; }
  .nav-logo-img { height: 44px; }
  .team-grid, .card-grid-3, .card-grid-2, .industry-hero-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2,1fr); padding: 40px 24px; }
  .page-hero { padding: 120px 24px 60px; }
}
