:root {
  --ink-950: #0e1630;
  --ink-900: #14213d;
  --ink-800: #24365d;
  --ink-700: #425b7c;
  --ink-600: #60739a;
  --sky-500: #1ea7ff;
  --sky-400: #55bbff;
  --violet-600: #7c3aed;
  --violet-500: #8b5cf6;
  --violet-200: #e5ddff;
  --mint-500: #16c47f;
  --amber-500: #f2a93b;
  --rose-500: #ef5f7a;
  --emerald-500: #10b981;
  --blue-500: #3b82f6;
  --surface: #ffffff;
  --surface-alt: #f7f9ff;
  --surface-soft: #f3f6fe;
  --border: #dbe4f2;
  --shadow-sm: 0 10px 24px rgba(22, 33, 69, 0.08);
  --shadow-md: 0 20px 56px rgba(24, 39, 75, 0.12);
  --shadow-lg: 0 30px 72px rgba(20, 33, 61, 0.16);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --font-heading: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --container: 1240px;
  --nav-h: 86px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--ink-900);
  background: #f7f9fd;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 1000;
  background: var(--ink-900);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
}

.skip-link:focus {
  left: 12px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.page-shell {
  padding-top: 0;
}

/* ================================
   NAVIGATION
================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
}

.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 168px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--ink-700);
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  background: transparent;
  color: var(--sky-500);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

/* ================================
   BUTTONS
================================ */
.btn,
.btn-secondary,
.btn-ghost,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 14px;
  padding: 14px 22px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn {
  color: #fff;
  background: linear-gradient(135deg, var(--sky-500), var(--violet-600));
  box-shadow: var(--shadow-sm);
}

.btn:hover,
.btn-secondary:hover,
.btn-ghost:hover,
.btn-outline:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--ink-900);
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary-light {
  color: #fff;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
}

.btn-secondary-light:hover {
  background: rgba(255,255,255,0.25);
  color: #fff;
}

.btn-ghost {
  color: var(--violet-600);
  background: rgba(124, 58, 237, 0.08);
}

.btn-outline {
  color: var(--ink-900);
  background: #fff;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-outline:hover {
  border-color: var(--sky-500);
  color: var(--sky-500);
}

.menu-toggle {
  display: none;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #fff;
  align-items: center;
  justify-content: center;
  color: var(--ink-900);
  box-shadow: var(--shadow-sm);
}

.nav-panel {
  display: none;
}

/* ================================
   HERO
================================ */
.hero {
  padding: 16px 0 20px;
}

.hero-panel {
  border: 0;
  border-radius: 28px;
  padding: 36px 40px;
  background:
    radial-gradient(circle at top right, rgba(30, 167, 255, 0.1), transparent 24%),
    radial-gradient(circle at bottom right, rgba(124, 58, 237, 0.12), transparent 28%),
    linear-gradient(135deg, #182754 0%, #182754 52%, #1c2e63 100%);
  box-shadow: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 28px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #8ed7ff;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.05em;
}

.hero h1 {
  max-width: none;
  color: #ffffff;
}

.page-hero h1 {
  max-width: 16ch;
}

.hero p.lead,
.page-hero p.lead {
  margin: 0 0 24px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-700);
  max-width: 64ch;
}

.hero p.lead {
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions,
.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-metrics {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.metric-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.metric-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateX(4px);
}

.metric-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.metric-icon-sky   { background: rgba(56,189,248,0.18); color: #38bdf8; }
.metric-icon-violet { background: rgba(139,92,246,0.18); color: #a78bfa; }
.metric-icon-emerald { background: rgba(52,211,153,0.18); color: #34d399; }

.metric-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.metric-card strong {
  display: block;
  font-size: 0.88rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.metric-card span {
  color: rgba(255,255,255,0.55);
  font-size: 0.78rem;
  font-weight: 500;
}

.metric-glow {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  border-radius: 0 0 14px 14px;
}

.metric-glow-sky    { background: linear-gradient(90deg, #38bdf8, transparent); }
.metric-glow-violet { background: linear-gradient(90deg, #a78bfa, transparent); }
.metric-glow-emerald { background: linear-gradient(90deg, #34d399, transparent); }

.hero-visual {
  min-height: 560px;
  position: relative;
  border-radius: 34px;
  border: 1px solid rgba(181, 200, 233, 0.7);
  background:
    linear-gradient(rgba(62, 89, 139, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(62, 89, 139, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 255, 0.96));
  background-size: 38px 38px, 38px 38px, auto;
  overflow: hidden;
}

.hero-node {
  position: absolute;
  width: 190px;
  padding: 13px 14px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  animation: floatCard 8s ease-in-out infinite;
}

.hero-node h3 {
  margin: 0 0 5px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-node p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--ink-700);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero-node .tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: 999px;
  margin-bottom: 8px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.hero-node.orchestrator {
  width: 190px;
  left: 50%;
  top: 50%;
  margin-left: -95px;
  margin-top: -70px;
  border-color: #b7dcff;
  box-shadow: 0 8px 32px rgba(30, 167, 255, 0.22);
  z-index: 2;
  animation: floatCard 7s ease-in-out infinite;
}

/* top-left */
.hero-node.hitl     { left: 18px;  top: 28px;    width: 158px; animation-delay: 0s; }
/* top-right */
.hero-node.cost     { right: 18px; top: 28px;    width: 158px; animation-delay: -2s; }
/* bottom-left */
.hero-node.security { left: 18px;  bottom: 28px; width: 158px; animation-delay: -1s; }
/* bottom-right */
.hero-node.artifacts{ right: 18px; bottom: 28px; width: 158px; animation-delay: -3s; }

.tag.orchestrator { background: rgba(30, 167, 255, 0.12); color: var(--sky-500); }
.tag.hitl { background: rgba(124, 58, 237, 0.12); color: var(--violet-600); }
.tag.security { background: rgba(239, 95, 122, 0.12); color: #d9485f; }
.tag.cost { background: rgba(242, 169, 59, 0.16); color: #c88213; }
.tag.artifacts { background: rgba(124, 58, 237, 0.12); color: var(--violet-600); }

.hero-svg-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.svg-line {
  animation: svgLinePulse 3s ease-in-out infinite;
}

.svg-line:nth-child(2) { animation-delay: -0.75s; }
.svg-line:nth-child(3) { animation-delay: -1.5s; }
.svg-line:nth-child(4) { animation-delay: -2.25s; }

@keyframes svgLinePulse {
  0%, 100% { opacity: 0.3; stroke-dashoffset: 0; }
  50%       { opacity: 0.9; stroke-dashoffset: -18; }
}

/* ================================
   CLOUD STRIP
================================ */
.cloud-strip {
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(247, 249, 255, 0.8);
}

.cloud-strip-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

@media (min-width: 560px) {
  .cloud-strip-inner {
    flex-direction: row;
    justify-content: center;
  }
}

.cloud-strip-label {
  font-size: 0.88rem;
  color: var(--ink-600);
  font-weight: 600;
  white-space: nowrap;
}

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

.cloud-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-700);
  font-size: 0.9rem;
  font-weight: 600;
}

.cloud-logo img {
  height: 24px;
  width: auto;
  display: inline-block;
}

/* ================================
   SECTIONS
================================ */
.section {
  padding: 36px 0 24px;
}

.section-alt {
  background: rgba(247, 249, 255, 0.7);
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  align-items: end;
  margin-bottom: 24px;
}

.section-header h2 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 2.3vw, 2.25rem);
  line-height: 1.16;
}

.section-header p {
  margin: 0;
  max-width: 64ch;
  color: var(--ink-700);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* ================================
   GRIDS
================================ */
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ================================
   CARDS (shared)
================================ */
.card,
.feature-card,
.solution-card,
.pricing-card,
.resource-card,
.architecture-card,
.comparison-card,
.faq-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
}

.feature-card,
.solution-card,
.resource-card,
.architecture-card,
.comparison-card,
.faq-item {
  padding: 22px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-card:hover,
.solution-card:hover,
.resource-card:hover,
.use-case-card:hover,
.step-card:hover,
.tech-card:hover,
.persona-card:hover,
.resource-card-v2:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(30, 167, 255, 0.14), rgba(124, 58, 237, 0.16));
  color: var(--violet-600);
}

.icon-badge svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
}

.feature-card h3,
.solution-card h3,
.resource-card h3,
.architecture-card h3,
.comparison-card h3,
.pricing-card h3,
.faq-item h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.feature-card p,
.solution-card p,
.resource-card p,
.architecture-card p,
.comparison-card p,
.pricing-card p,
.faq-item p {
  margin: 0;
  color: var(--ink-700);
}

/* ================================
   STEP CARDS (How It Works)
================================ */
.step-card {
  padding: 28px 24px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.step-num {
  font-size: 2.6rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: rgba(30, 167, 255, 0.2);
  margin-bottom: 14px;
  line-height: 1;
}

.step-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.step-card p {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* ================================
   WHY CARDS
================================ */
.why-card {
  padding: 28px 24px;
  border-radius: 22px;
  text-align: center;
  background: transparent;
}

.why-card .icon-badge {
  margin: 0 auto 16px;
}

.why-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.why-card p {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* ================================
   SPOTLIGHT / CTA BAND
================================ */
.spotlight {
  padding: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,249,255,0.96));
}

.split-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.split-panel h2 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.2;
}

.split-panel p {
  color: var(--ink-700);
  margin-bottom: 20px;
}

.check-list,
.spec-list,
.pricing-list,
.resource-list,
.compact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li,
.spec-list li,
.pricing-list li,
.resource-list li,
.compact-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 11px 0;
  color: var(--ink-700);
  border-bottom: 1px solid rgba(219, 228, 242, 0.8);
}

.check-list li:last-child,
.spec-list li:last-child,
.pricing-list li:last-child,
.resource-list li:last-child,
.compact-list li:last-child {
  border-bottom: 0;
}

.check-list li::before,
.pricing-list li::before,
.compact-list li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-500), var(--violet-600));
}

.cta-band {
  margin: 0;
  padding: 36px 44px;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--ink-900), #1b2852 50%, #301a69 100%);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.cta-band h2 {
  color: #fff;
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.2vw, 2.2rem);
}

.cta-band p {
  margin: 0 0 24px;
  color: rgba(255,255,255,0.82);
  max-width: 56ch;
  font-size: 1.05rem;
}

/* ================================
   PAGE HERO
================================ */
.page-hero {
  padding: 12px 0 4px;
}

.page-hero-panel {
  padding: 40px 48px;
  border-radius: 28px;
  border: 0;
  background:
    radial-gradient(circle at right center, rgba(30, 167, 255, 0.08), transparent 26%),
    linear-gradient(135deg, #182754 0%, #182754 54%, #1d3067 100%);
  box-shadow: none;
  text-align: center;
}

.page-hero-panel .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: #8ed7ff;
}

.page-hero-panel h1,
.page-hero-panel p.lead {
  margin-left: auto;
  margin-right: auto;
}

.page-hero-panel h1 {
  color: #ffffff;
}

.page-hero-panel p.lead {
  color: rgba(255, 255, 255, 0.8);
}

.page-hero-panel .toolbar {
  justify-content: center;
}

/* ================================
   TIMELINE / WORKFLOW
================================ */
.timeline {
  display: grid;
  gap: 14px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.92);
}

.timeline-step-number {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--sky-500), var(--violet-600));
  color: #fff;
  font-weight: 800;
  font-family: var(--font-heading);
}

.timeline-step h3 {
  margin: 0 0 8px;
}

.timeline-step p {
  margin: 0;
}

/* Workflow Steps (product page) */
.workflow-steps {
  display: grid;
  gap: 14px;
}

.workflow-step {
  padding: 24px 28px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.workflow-step-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  width: 180px;
}

.workflow-step-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(30, 167, 255, 0.14), rgba(124, 58, 237, 0.16));
  color: var(--violet-600);
  flex-shrink: 0;
}

.workflow-step-num {
  font-size: 1.6rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: rgba(30, 167, 255, 0.25);
  line-height: 1;
}

.workflow-step-eyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--sky-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.workflow-step-body h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
}

.workflow-step-body p {
  margin: 0 0 14px;
  color: var(--ink-700);
}

.workflow-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.workflow-features li {
  font-size: 0.85rem;
  color: var(--ink-700);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}

.workflow-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sky-500);
  font-weight: 700;
}

/* HITL Callout */
.hitl-callout {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 48px 44px;
  border-radius: 28px;
}

.hitl-callout h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  margin: 16px auto 16px;
  max-width: 48ch;
}

.hitl-callout p {
  color: var(--ink-700);
  max-width: 52ch;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.badge-secondary {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.08);
  color: var(--violet-600);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ================================
   FAQ
================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item details {
  cursor: pointer;
  padding: 20px 24px;
}

.faq-item summary {
  list-style: none;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 14px;
  color: var(--ink-700);
  line-height: 1.7;
}

/* ================================
   PRICING V2
================================ */
.pricing-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.pricing-card-v2 {
  padding: 32px 28px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.pricing-card-popular {
  border-color: var(--violet-500);
  box-shadow: 0 24px 62px rgba(124, 58, 237, 0.18);
}

.pricing-ribbon-v2 {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 16px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sky-500), var(--violet-600));
  color: #fff;
  white-space: nowrap;
}

.pricing-card-header {
  margin-bottom: 20px;
}

.pricing-card-header h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
  font-family: var(--font-heading);
}

.pricing-card-header p {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.92rem;
}

.price-v2 {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.price-v2 strong {
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
  color: var(--ink-900);
}

.price-v2 span {
  color: var(--ink-600);
  font-size: 1rem;
  font-weight: 600;
}

.price-period {
  color: var(--ink-600);
  font-size: 0.85rem;
  margin-bottom: 24px;
}

.pricing-list-v2 {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 10px;
}

.pricing-list-v2 li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink-700);
}

.pricing-list-v2 li::before {
  content: "";
  flex: 0 0 10px;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky-500), var(--violet-600));
}

.pricing-note {
  text-align: center;
  color: var(--ink-600);
  font-size: 0.9rem;
  margin-top: 18px;
}

/* ================================
   TECH CARDS (Platform)
================================ */
.tech-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.tech-card h3 {
  margin: 12px 0 8px;
  font-size: 1.1rem;
}

.tech-card p {
  margin: 0 0 16px;
  color: var(--ink-700);
  font-size: 0.9rem;
  line-height: 1.6;
}

.tech-card-sky  { border-color: rgba(30, 167, 255, 0.3); }
.tech-card-violet { border-color: rgba(124, 58, 237, 0.3); }
.tech-card-amber { border-color: rgba(242, 169, 59, 0.35); }
.tech-card-emerald { border-color: rgba(16, 185, 129, 0.3); }
.tech-card-blue { border-color: rgba(59, 130, 246, 0.3); }

.tech-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-bottom: 16px;
}

.tech-dot-sky    { background: var(--sky-500); }
.tech-dot-violet { background: var(--violet-500); }
.tech-dot-amber  { background: var(--amber-500); }
.tech-dot-emerald{ background: var(--emerald-500); }
.tech-dot-blue   { background: var(--blue-500); }

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tech-badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.tech-badge-sky    { background: rgba(30, 167, 255, 0.1);  color: #0d8be0; border-color: rgba(30, 167, 255, 0.25); }
.tech-badge-violet { background: rgba(124, 58, 237, 0.1); color: var(--violet-600); border-color: rgba(124, 58, 237, 0.25); }
.tech-badge-amber  { background: rgba(242, 169, 59, 0.12); color: #b87308; border-color: rgba(242, 169, 59, 0.3); }
.tech-badge-emerald{ background: rgba(16, 185, 129, 0.1); color: #0a8a60; border-color: rgba(16, 185, 129, 0.25); }
.tech-badge-blue   { background: rgba(59, 130, 246, 0.1);  color: #1d5fc4; border-color: rgba(59, 130, 246, 0.25); }

/* ================================
   DATA HIERARCHY
================================ */
.hierarchy-list {
  display: grid;
  gap: 6px;
  margin-top: 20px;
}

.hierarchy-item {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 0.9rem;
}

.hierarchy-level {
  font-family: monospace;
  color: var(--ink-600);
  flex-shrink: 0;
  width: 22px;
}

.hierarchy-name {
  font-weight: 700;
  flex-shrink: 0;
  min-width: 90px;
}

.hierarchy-desc {
  color: var(--ink-700);
}

.hierarchy-visual {
  padding: 28px;
  border-radius: 22px;
  background: rgba(255,255,255,0.92);
  display: grid;
  gap: 8px;
}

.hierarchy-node {
  display: flex;
  align-items: stretch;
}

.hierarchy-connector {
  width: 16px;
  height: 16px;
  border-left: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  flex-shrink: 0;
  margin-right: 4px;
  margin-top: 4px;
  border-radius: 0 0 0 6px;
}

.hierarchy-node-inner {
  flex: 1;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(247, 249, 255, 0.5);
  font-size: 0.88rem;
  font-weight: 600;
}

.hierarchy-node-inner .hierarchy-node-desc {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--ink-600);
  margin-top: 2px;
}

.hierarchy-node-highlight .hierarchy-node-inner {
  border-color: rgba(30, 167, 255, 0.4);
  background: rgba(30, 167, 255, 0.05);
}

/* ================================
   EXECUTION FLOW
================================ */
.execution-flow-label {
  text-align: center;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-600);
  margin-bottom: 24px;
}

.execution-flow-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.flow-node {
  padding: 12px 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  text-align: center;
}

.flow-node-default { background: rgba(247,249,255,0.8); border-color: var(--border); color: var(--ink-800); }
.flow-node-sky     { background: rgba(30,167,255,0.1); border-color: rgba(30,167,255,0.3); color: #0b7cd4; }
.flow-node-violet  { background: rgba(124,58,237,0.1); border-color: rgba(124,58,237,0.25); color: var(--violet-600); }
.flow-node-amber   { background: rgba(242,169,59,0.1); border-color: rgba(242,169,59,0.3); color: #a86600; }
.flow-node-emerald { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.25); color: #0a7a56; }
.flow-node-blue    { background: rgba(59,130,246,0.1); border-color: rgba(59,130,246,0.25); color: #1d5fc4; }
.flow-node-amber-solid   { background: rgba(242,169,59,0.15); border-color: rgba(242,169,59,0.4); color: #a86600; font-weight: 700; padding: 14px 28px; }
.flow-node-emerald-solid { background: rgba(16,185,129,0.12); border-color: rgba(16,185,129,0.35); color: #0a7a56; font-weight: 700; padding: 14px 28px; }

.flow-node-sub {
  font-size: 0.78rem;
  opacity: 0.8;
  margin-top: 2px;
}

.flow-arrow {
  width: 1.5px;
  height: 20px;
  background: var(--border);
  margin: 0 auto;
}

.flow-parallel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* ================================
   SOLUTIONS — PERSONA CARDS
================================ */
.persona-card {
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.persona-card-sky    { border-color: rgba(30, 167, 255, 0.3); }
.persona-card-violet { border-color: rgba(124, 58, 237, 0.3); }
.persona-card-emerald{ border-color: rgba(16, 185, 129, 0.3); }
.persona-card-amber  { border-color: rgba(242, 169, 59, 0.35); }

.persona-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.persona-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.persona-icon-sky    { background: rgba(30, 167, 255, 0.12); color: #0d8be0; }
.persona-icon-violet { background: rgba(124, 58, 237, 0.12); color: var(--violet-600); }
.persona-icon-emerald{ background: rgba(16, 185, 129, 0.12); color: #0a8a60; }
.persona-icon-amber  { background: rgba(242, 169, 59, 0.14); color: #b87308; }

.persona-badge {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  border: 1px solid transparent;
}

.persona-badge-sky    { background: rgba(30, 167, 255, 0.1); color: #0d8be0; border-color: rgba(30,167,255,0.25); }
.persona-badge-violet { background: rgba(124, 58, 237, 0.1); color: var(--violet-600); border-color: rgba(124,58,237,0.25); }
.persona-badge-emerald{ background: rgba(16, 185, 129, 0.1); color: #0a8a60; border-color: rgba(16,185,129,0.25); }
.persona-badge-amber  { background: rgba(242, 169, 59, 0.12); color: #b87308; border-color: rgba(242,169,59,0.3); }

.persona-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.persona-card > p {
  color: var(--ink-700);
  margin-bottom: 20px;
  line-height: 1.7;
}

.check-list-v2 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.check-list-v2 li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-700);
}

.check-list-v2 li::before {
  content: "✓";
  color: var(--sky-500);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Use Cases */
.use-case-card {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.use-case-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.use-case-card p {
  margin: 0 0 16px;
  color: var(--ink-700);
  font-size: 0.9rem;
  line-height: 1.65;
}

.use-case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.use-case-tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  background: rgba(30, 167, 255, 0.08);
  color: #0b7cd4;
  border: 1px solid rgba(30, 167, 255, 0.2);
}

/* ================================
   RESOURCES GRID
================================ */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.resource-card-v2 {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.resource-card-v2 h3 {
  margin: 12px 0 8px;
  font-size: 1rem;
}

.resource-card-v2 p {
  margin: 0 0 16px;
  color: var(--ink-700);
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
}

.resource-type-badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.73rem;
  font-weight: 800;
  border: 1px solid transparent;
  margin-bottom: 12px;
  align-self: flex-start;
}

.resource-badge-sky    { background: rgba(30,167,255,0.1); color: #0d8be0; border-color: rgba(30,167,255,0.25); }
.resource-badge-violet { background: rgba(124,58,237,0.1); color: var(--violet-600); border-color: rgba(124,58,237,0.25); }
.resource-badge-amber  { background: rgba(242,169,59,0.12); color: #b87308; border-color: rgba(242,169,59,0.3); }
.resource-badge-emerald{ background: rgba(16,185,129,0.1); color: #0a8a60; border-color: rgba(16,185,129,0.25); }

.resource-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.resource-icon-sky    { background: rgba(30,167,255,0.1); color: #0d8be0; }
.resource-icon-violet { background: rgba(124,58,237,0.1); color: var(--violet-600); }
.resource-icon-amber  { background: rgba(242,169,59,0.12); color: #b87308; }
.resource-icon-emerald{ background: rgba(16,185,129,0.1); color: #0a8a60; }

.resource-link {
  font-size: 0.85rem;
  color: var(--sky-500);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.resource-link:hover {
  text-decoration: underline;
}

/* Newsletter */
.newsletter-panel {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 40px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.newsletter-panel h2 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
}

.newsletter-panel > p {
  color: var(--ink-700);
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-input {
  flex: 1;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 0.95rem;
  outline: none;
}

.newsletter-input:focus {
  border-color: var(--sky-500);
}

.newsletter-note {
  font-size: 0.78rem;
  color: var(--ink-600);
  margin-top: 12px;
}

/* ================================
   FOOTER
================================ */
.footer {
  margin-top: 0;
  border-top: 1px solid rgba(219, 228, 242, 0.8);
  background: rgba(10, 18, 40, 0.98);
  color: rgba(255,255,255,0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 0.9fr 0.9fr;
  gap: 24px;
  padding: 28px 0 20px;
}

.footer .brand img {
  width: 180px;
}

.footer p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  margin-top: 10px;
  line-height: 1.6;
}

.footer h4 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 14px 0 20px;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-legal {
  display: flex;
  gap: 18px;
}

/* ================================
   MISC HELPERS
================================ */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 0;
}

.stat-chip {
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
}

.stat-chip strong {
  display: block;
  font-size: 1.8rem;
  font-family: var(--font-heading);
  margin-bottom: 6px;
}

.stat-chip span {
  color: var(--ink-700);
  font-weight: 700;
}

.architecture-preview {
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(246,249,255,0.96));
  padding: 20px;
}

.architecture-preview img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(219, 228, 242, 0.9);
  background: #fff;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.08);
  color: var(--ink-800);
  font-weight: 800;
}

.eyebrow-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--violet-600);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 12px;
}

/* ================================
   ANIMATIONS
================================ */
.page-transition {
  animation: pageRise 0.55s ease both;
  will-change: transform, opacity;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.6s ease, opacity 0.6s ease;
}

body.is-transitioning .page-transition {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulseLine {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

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

/* ================================
   REDUCED MOTION
================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .page-transition,
  .reveal,
  .reveal.visible,
  .hero-node,
  .hero-line::after,
  body.is-transitioning .page-transition {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ================================
   RESPONSIVE — 1200px
================================ */
@media (max-width: 1200px) {
  .resources-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ================================
   RESPONSIVE — 1100px
================================ */
@media (max-width: 1100px) {
  .hero-grid,
  .split-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .pricing-grid-v2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-visual {
    min-height: 520px;
  }

  .workflow-step {
    flex-direction: column;
  }

  .workflow-step-left {
    width: auto;
  }

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

/* ================================
   RESPONSIVE — 920px
================================ */
@media (max-width: 920px) {
  :root { --nav-h: 78px; }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links,
  .nav-cta-desktop {
    display: none;
  }

  .nav-panel {
    position: fixed;
    inset: var(--nav-h) 16px auto 16px;
    border-radius: 28px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.98);
    box-shadow: var(--shadow-lg);
    padding: 18px;
    display: none;
    z-index: 101;
  }

  .nav-panel.open {
    display: block;
  }

  .nav-panel .nav-links {
    display: grid;
    gap: 6px;
  }

  .nav-panel .nav-links a,
  .nav-panel .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-panel,
  .page-hero-panel {
    padding: 22px 20px;
  }

  .hero-metrics,
  .stat-strip,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-node.orchestrator {
    width: 280px;
  }

  .pricing-grid-v2 {
    grid-template-columns: 1fr;
  }
}

/* ================================
   RESPONSIVE — 640px
================================ */
@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero-panel,
  .page-hero-panel,
  .cta-band,
  .feature-card,
  .solution-card,
  .pricing-card,
  .resource-card,
  .architecture-card,
  .comparison-card,
  .faq-item,
  .hitl-callout,
  .newsletter-panel {
    border-radius: 24px;
  }

  .hero-visual {
    min-height: 680px;
  }

  .hero-node {
    width: calc(100% - 36px);
  }

  .hero-node.hitl,
  .hero-node.security,
  .hero-node.cost,
  .hero-node.artifacts {
    left: 18px;
    right: 18px;
  }

  .hero-node.hitl { top: 20px; }
  .hero-node.orchestrator { top: 50%; left: 50%; transform: translate(-50%, -50%); width: calc(100% - 44px); }
  .hero-node.cost { top: 176px; }
  .hero-node.security { bottom: 182px; }
  .hero-node.artifacts { bottom: 28px; }

  .hero-line {
    display: none;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2rem;
  }

  .brand img {
    width: 146px;
  }

  .grid-3,
  .grid-4,
  .resources-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 28px 24px;
  }

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

  .newsletter-form {
    flex-direction: column;
  }

  .hitl-callout {
    padding: 32px 24px;
  }

  /* ── page-hero responsive ── */
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-visual {
    display: none;
  }
}

/* ============================================================
   PAGE-HERO V2 — LEFT-ALIGNED SPLIT LAYOUT
   ============================================================ */

/* ── Keyframes ── */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

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

@keyframes popIn {
  from { opacity: 0; transform: scale(0.82); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes dotFill {
  from { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); }
  to   { background: #38bdf8; border-color: #38bdf8; box-shadow: 0 0 0 4px rgba(56,189,248,0.18); }
}

@keyframes connectorGrow {
  from { transform: scaleY(0); }
  to   { transform: scaleY(1); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* ── Grid layout ── */
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* ── Panel overrides for v2 ── */
.page-hero-panel {
  text-align: left;
}

.page-hero-panel h1,
.page-hero-panel p.lead {
  margin-left: 0;
  margin-right: 0;
}

.page-hero-panel .toolbar {
  justify-content: flex-start;
}

/* ── Left: content block ── */
.page-hero-content {
  animation: slideInLeft 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.page-hero-content h1 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  line-height: 1.18;
  color: #ffffff;
  margin: 0 0 14px;
  padding-left: 14px;
  border-left: 3px solid #38bdf8;
  position: relative;
}

.page-hero-content h1::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #38bdf8 0%, #818cf8 100%);
  border-radius: 2px;
  filter: drop-shadow(0 0 6px rgba(56,189,248,0.6));
}

.page-hero-desc {
  font-size: 0.97rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 20px;
  max-width: 480px;
}

.page-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-pill {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 4px 12px;
  border-radius: 999px;
  opacity: 0;
  animation: fadeUp 0.4s ease both;
}

.hero-pill:nth-child(1) { animation-delay: 0.35s; }
.hero-pill:nth-child(2) { animation-delay: 0.45s; }
.hero-pill:nth-child(3) { animation-delay: 0.55s; }
.hero-pill:nth-child(4) { animation-delay: 0.65s; }

/* ── Right: visual wrapper ── */
.page-hero-visual {
  animation: slideInRight 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   PLATFORM — layer stack visual
   ============================================================ */
.platform-layers {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 340px;
}

.platform-layer {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  opacity: 0;
  animation: slideInRight 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.anim-layer-1 { animation-delay: 0.18s; }
.anim-layer-2 { animation-delay: 0.30s; }
.anim-layer-3 { animation-delay: 0.42s; }
.anim-layer-4 { animation-delay: 0.54s; }

.platform-layer-bar {
  display: block;
  width: 4px;
  align-self: stretch;
  flex-shrink: 0;
  border-radius: 0;
}

.platform-bar-sky    { background: #38bdf8; }
.platform-bar-violet { background: #818cf8; }
.platform-bar-amber  { background: #fbbf24; }
.platform-bar-emerald{ background: #34d399; }

.platform-layer-body {
  padding: 10px 14px;
  flex: 1;
}

.platform-layer-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.platform-layer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.platform-layer-tags span {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2px 7px;
  border-radius: 4px;
}

/* ============================================================
   PRODUCT — vertical step flow
   ============================================================ */
.workflow-flow {
  width: 100%;
  max-width: 260px;
}

.workflow-flow-track {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.workflow-flow-step {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.4s ease both;
}

.anim-step-1 { animation-delay: 0.15s; }
.anim-step-2 { animation-delay: 0.28s; }
.anim-step-3 { animation-delay: 0.41s; }
.anim-step-4 { animation-delay: 0.54s; }
.anim-step-5 { animation-delay: 0.67s; }

.workflow-flow-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}

.wf-dot-filled {
  background: #38bdf8;
  border-color: #38bdf8;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.15);
  animation: dotFill 0.4s ease both;
}

.wf-dot-accent {
  background: #34d399;
  border-color: #34d399;
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.15);
}

.workflow-flow-label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wf-num {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.wf-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.workflow-flow-connector {
  width: 2px;
  height: 22px;
  margin-left: 6px;
  background: linear-gradient(180deg, #38bdf8 0%, rgba(56,189,248,0.3) 100%);
  border-radius: 2px;
  transform-origin: top;
  transform: scaleY(0);
  animation: connectorGrow 0.25s ease both;
}

.anim-connector-1 { animation-delay: 0.22s; }
.anim-connector-2 { animation-delay: 0.35s; }
.anim-connector-3 { animation-delay: 0.48s; }
.anim-connector-4 { animation-delay: 0.61s; }

/* ============================================================
   PRICING — mini plan card trio
   ============================================================ */
.pricing-mini-grid {
  display: flex;
  gap: 10px;
  align-items: stretch;
  width: 100%;
  max-width: 340px;
}

.pricing-mini-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  text-align: center;
  position: relative;
  opacity: 0;
  animation: fadeUp 0.4s ease both;
}

.anim-price-1 { animation-delay: 0.18s; }
.anim-price-2 { animation-delay: 0.30s; }
.anim-price-3 { animation-delay: 0.42s; }

.pricing-mini-popular {
  background: rgba(56, 189, 248, 0.08);
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.15);
}

.pricing-mini-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f1a2e;
  background: #38bdf8;
  padding: 2px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-mini-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-mini-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.pricing-mini-custom {
  font-size: 1.1rem;
}

.pricing-mini-period {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.38);
}

/* ============================================================
   SOLUTIONS — 2x2 persona role grid
   ============================================================ */
.persona-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  max-width: 300px;
}

.persona-mini-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-align: center;
  opacity: 0;
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.anim-persona-1 { animation-delay: 0.18s; }
.anim-persona-2 { animation-delay: 0.28s; }
.anim-persona-3 { animation-delay: 0.38s; }
.anim-persona-4 { animation-delay: 0.48s; }

.persona-mini-sky    { border-color: rgba(56, 189, 248, 0.2); }
.persona-mini-violet { border-color: rgba(129, 140, 248, 0.2); }
.persona-mini-amber  { border-color: rgba(251, 191, 36, 0.2); }
.persona-mini-emerald{ border-color: rgba(52, 211, 153, 0.2); }

.persona-mini-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.persona-mini-icon-sky    { background: rgba(56, 189, 248, 0.15); color: #38bdf8; }
.persona-mini-icon-violet { background: rgba(129, 140, 248, 0.15); color: #818cf8; }
.persona-mini-icon-amber  { background: rgba(251, 191, 36, 0.15);  color: #fbbf24; }
.persona-mini-icon-emerald{ background: rgba(52, 211, 153, 0.15);  color: #34d399; }

.persona-mini-icon svg { stroke: currentColor; }

.persona-mini-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   RESOURCES — 2x2 icon grid
   ============================================================ */
.resource-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
  max-width: 300px;
}

.resource-mini-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  text-align: center;
  opacity: 0;
  animation: fadeUp 0.4s ease both;
}

.anim-resource-1 { animation-delay: 0.18s; }
.anim-resource-2 { animation-delay: 0.28s; }
.anim-resource-3 { animation-delay: 0.38s; }
.anim-resource-4 { animation-delay: 0.48s; }

.resource-mini-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatY 3s ease-in-out infinite;
}

.resource-mini-card:nth-child(2) .resource-mini-icon { animation-delay: 0.4s; }
.resource-mini-card:nth-child(3) .resource-mini-icon { animation-delay: 0.8s; }
.resource-mini-card:nth-child(4) .resource-mini-icon { animation-delay: 1.2s; }

.resource-mini-icon-sky    { background: rgba(56, 189, 248, 0.15); color: #38bdf8; }
.resource-mini-icon-violet { background: rgba(129, 140, 248, 0.15); color: #818cf8; }
.resource-mini-icon-amber  { background: rgba(251, 191, 36, 0.15);  color: #fbbf24; }
.resource-mini-icon-emerald{ background: rgba(52, 211, 153, 0.15);  color: #34d399; }

.resource-mini-icon svg { stroke: currentColor; }

.resource-mini-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   PAGE-HERO V2 — RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .page-hero-visual {
    display: none;
  }

  .page-hero-content h1 {
    font-size: 1.5rem;
  }
}
