/* ═══════════════════════════════════════════════════════════════
   AI Pulse — Marketing Design System
   Shared across all marketing pages (aipulse.sylva.sg)
   ═══════════════════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --brand:       #5A8BFF;
  --brand-dim:   #3D6BE0;
  --brand-glow:  rgba(90,139,255,0.18);
  --aws:         #FF9900;
  --azure:       #0078D4;

  --ink:         #07090F;
  --ink-2:       #0A0E18;
  --ink-3:       #11172A;
  --ink-4:       #1A1F35;

  --text:        #F5F7FB;
  --text-2:      #B8BFD4;
  --text-3:      #7A82A0;

  --border:      #1E2640;
  --border-2:    #262E48;
  --card-bg:     rgba(255,255,255,0.03);
  --card-hover:  rgba(90,139,255,0.05);

  --radius:      10px;
  --radius-lg:   14px;

  /* typography scale */
  --fs-display:  clamp(2rem, 4vw, 2.75rem);
  --fs-h1:       clamp(1.5rem, 3vw, 2.125rem);
  --fs-h2:       1.5rem;
  --fs-h3:       1.125rem;
  --fs-body:     1rem;
  --fs-sm:       0.875rem;
  --fs-xs:       0.8125rem;
  --fs-xxs:      0.75rem;
  --fs-micro:    0.6875rem;

  /* accent palette — per pillar */
  --accent-security:   #E04E5A;
  --accent-compliance: #A78BFA;
  --accent-finops:     #F5B947;
  --accent-ops:        #22D3A0;
  --accent-quality:    #22D3A0;
  --accent-lineage:    #A78BFA;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
a { color: inherit; }
img { max-width: 100%; height: auto; }

/* ── BASE ── */
body {
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(ellipse 700px 500px at 12% 8%, rgba(90,139,255,0.05), transparent 70%),
    radial-gradient(ellipse 500px 400px at 88% 75%, rgba(167,139,250,0.035), transparent 70%),
    radial-gradient(ellipse 400px 350px at 50% 45%, rgba(34,211,160,0.02), transparent 70%),
    var(--ink);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: var(--fs-body);
}

/* ── TOPBAR ── */
.topbar {
  background: var(--brand);
  color: #fff;
  text-align: center;
  padding: 9px 20px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1px;
}
.topbar a { color: #fff; font-weight: 700; text-decoration: underline; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 80px);
  height: 64px;
  background: rgba(6,13,24,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.nav-logo-mark { height: 34px; width: auto; display: block; flex-shrink: 0; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.nav-wordmark { font-size: var(--fs-body); font-weight: 700; color: var(--text); letter-spacing: -0.3px; }
.nav-submark { font-size: var(--fs-micro); color: var(--text-3); font-weight: 500; margin-top: 4px; letter-spacing: 0.1px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--text-2); text-decoration: none;
  font-size: var(--fs-sm); font-weight: 500;
  transition: color 0.2s; letter-spacing: 0.1px;
  position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active {
  color: var(--brand);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -20px; left: 0; right: 0;
  height: 2px;
  background: var(--brand);
  border-radius: 1px;
}
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer; margin-left: auto; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text-2); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
#nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
#nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand); color: #000; font-weight: 700;
  font-size: var(--fs-sm); padding: 13px 28px;
  border-radius: 8px; text-decoration: none;
  letter-spacing: 0.2px;
  transition: background 0.2s, box-shadow 0.3s;
}
.btn-primary:hover {
  background: var(--brand-dim);
  box-shadow: 0 0 28px var(--brand-glow);
}
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--text-2); font-weight: 600;
  font-size: var(--fs-sm); padding: 13px 28px;
  border-radius: 8px; text-decoration: none;
  border: 1px solid var(--border-2);
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.25); color: var(--text); }
.btn-ghost {
  color: var(--text-2); font-size: var(--fs-sm); font-weight: 500;
  text-decoration: none; padding: 7px 16px; border-radius: 7px;
  transition: background 0.2s, color 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); color: var(--text); }
.btn-primary-sm {
  background: var(--brand); color: #000; font-weight: 700;
  font-size: var(--fs-xs); padding: 8px 20px; border-radius: 7px;
  text-decoration: none; letter-spacing: 0.2px;
  transition: background 0.2s, box-shadow 0.3s;
}
.btn-primary-sm:hover { background: var(--brand-dim); box-shadow: 0 0 20px var(--brand-glow); }

/* ── HERO ── */
.hero { position: relative; background: var(--ink-2); border-bottom: 1px solid var(--border); overflow: hidden; }
.hero::before {
  content: ''; position: absolute;
  top: -15%; right: -5%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90,139,255,0.07), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.hero-wrap {
  position: relative;
  padding: clamp(80px, 11vw, 130px) clamp(24px, 5vw, 80px) clamp(60px, 8vw, 90px);
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: var(--fs-micro); font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--brand); margin-bottom: 22px;
}
.hero-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--brand); }
h1 {
  font-size: var(--fs-display);
  font-weight: 600; letter-spacing: -0.5px; line-height: 1.15;
  color: var(--text); margin-bottom: 20px;
}
h1 em { font-style: normal; color: var(--brand); }
.hero-sub {
  font-size: var(--fs-body); color: var(--text-2); line-height: 1.7;
  margin-bottom: 36px; max-width: 500px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

.cloud-badges { display: flex; gap: 10px; align-items: center; flex-wrap: nowrap; }
.cloud-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--card-bg); border: 1px solid var(--border-2); border-radius: 7px;
  padding: 7px 13px; font-size: var(--fs-xxs); font-weight: 600; color: var(--text-2);
  white-space: nowrap;
}
.cloud-badge img { width: 18px; height: 18px; object-fit: contain; }
.cloud-badge-label { font-size: var(--fs-micro); color: var(--text-3); letter-spacing: 0.3px; margin-right: 4px; }
.cloud-plus { font-size: var(--fs-body); font-weight: 700; color: var(--text-3); line-height: 1; padding: 0 2px; user-select: none; }

/* ── HERO PREVIEW ── */
.hero-preview {
  background: var(--ink-3); border: 1px solid var(--border-2);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6), 0 0 0 1px rgba(90,139,255,0.08);
}
.preview-bar {
  background: var(--ink-4); padding: 10px 14px;
  display: flex; align-items: center; gap: 6px;
  border-bottom: 1px solid var(--border);
}
.preview-dot { width: 9px; height: 9px; border-radius: 50%; }
.preview-dot:nth-child(1) { background: #FF5F57; }
.preview-dot:nth-child(2) { background: #FFBD2E; }
.preview-dot:nth-child(3) { background: #28C840; }
.preview-url { margin-left: 10px; font-size: var(--fs-micro); color: var(--text-3); font-family: monospace; }
.preview-body { padding: 16px; }
.preview-role-strip { display: flex; gap: 6px; margin-bottom: 14px; overflow: hidden; }
.role-chip {
  font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 5px;
  border: 1px solid var(--border); color: var(--text-2); background: var(--card-bg);
  white-space: nowrap;
}
.role-chip.active { color: var(--brand); border-color: rgba(90,139,255,0.3); background: rgba(90,139,255,0.08); }
.kpi-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 12px; }
.kpi-box { background: var(--ink-4); border: 1px solid var(--border); border-radius: 7px; padding: 10px 12px; }
.kpi-lbl { font-size: 10px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 4px; }
.kpi-val { font-size: 19px; font-weight: 700; color: var(--text); line-height: 1.2; min-height: 23px; }
.kpi-sub { font-size: 9px; margin-top: 3px; color: var(--text-3); }
.kpi-sub.g { color: #4CD97A; }
.kpi-sub.r { color: #E85959; }
.kpi-sub.y { color: #F5B947; }
.chart-2 { display: grid; grid-template-columns: 3fr 2fr; gap: 8px; }
.chart-box { background: var(--ink-4); border: 1px solid var(--border); border-radius: 7px; padding: 12px; }
.chart-title { font-size: 10px; font-weight: 600; color: var(--text-2); margin-bottom: 10px; }
.bar-item { margin-bottom: 7px; }
.bar-row { display: flex; justify-content: space-between; font-size: 10px; color: var(--text-3); margin-bottom: 3px; }
.bar-row span:last-child { font-weight: 700; color: var(--text-2); }
.bar-bg { height: 4px; background: var(--ink); border-radius: 2px; }
.bar-fg { height: 4px; border-radius: 2px; }
.frame-list { display: flex; flex-direction: column; gap: 5px; }
.frame-row { display: flex; align-items: center; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid var(--border); }
.frame-name { font-size: 10px; font-weight: 600; color: var(--text-2); }
.frame-pct { font-size: var(--fs-micro); font-weight: 800; }

/* ── STAT STRIP ── */
.stat-strip {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--ink-2); display: flex; justify-content: center; flex-wrap: wrap;
}
.stat-item { padding: 28px 48px; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 2rem; font-weight: 700; color: var(--brand); letter-spacing: -0.5px; line-height: 1; }
.stat-lbl { font-size: var(--fs-xxs); color: var(--text-3); text-transform: uppercase; letter-spacing: 0.6px; margin-top: 5px; }

/* ── SECTIONS ── */
.section { padding: clamp(64px, 8vw, 96px) clamp(24px, 5vw, 80px); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-alt { background: var(--ink-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.eyebrow {
  font-size: var(--fs-micro); font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--brand); margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--brand); }
.section-heading {
  font-size: var(--fs-h1); font-weight: 600;
  letter-spacing: -0.4px; line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  font-size: var(--fs-body); color: var(--text-2);
  line-height: 1.7; max-width: 580px;
}
.section-desc strong { color: var(--text); font-weight: 600; }
.section-center { text-align: center; }
.section-center .section-desc { margin: 0 auto; }
.section-center .eyebrow { justify-content: center; }
.section-center .eyebrow::before { display: none; }

/* ── PAGE HEADER (non-index pages) ── */
.page-header {
  position: relative; overflow: hidden;
  padding: clamp(80px, 10vw, 120px) clamp(24px, 5vw, 80px) clamp(48px, 6vw, 64px);
  border-bottom: 1px solid var(--border);
}
.page-header::before {
  content: ''; position: absolute;
  top: -20%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(90,139,255,0.06), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.page-header-inner {
  position: relative; max-width: 720px; margin: 0 auto; text-align: center;
}
.page-header h1 { margin-bottom: 16px; }
.page-header .section-desc { max-width: 600px; margin: 0 auto; }

/* ── CAPABILITY CARDS ── */
.cap-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; margin-top: 48px;
}
.cap-card {
  position: relative;
  background: var(--ink-2); padding: 32px 28px;
  transition: background 0.2s, transform 0.2s;
}
.cap-card::before {
  content: ''; position: absolute;
  inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, var(--brand), transparent 78%);
  opacity: 0.75;
}
.cap-card:hover { background: var(--ink-3); transform: translateY(-2px); }
.cap-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.cap-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-2);
  background: rgba(255,255,255,0.04);
  color: var(--brand);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  flex-shrink: 0;
}
.cap-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cap-num { font-size: var(--fs-micro); font-weight: 700; letter-spacing: 0.8px; color: var(--text-3); margin-bottom: 14px; }
.cap-title { font-size: var(--fs-h3); font-weight: 700; letter-spacing: -0.3px; }
.cap-desc { font-size: var(--fs-sm); color: var(--text-2); line-height: 1.65; margin-bottom: 16px; }
.cap-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  font-size: var(--fs-micro); padding: 3px 9px; border-radius: 5px;
  background: rgba(255,255,255,0.05); color: var(--text-3); font-weight: 500;
}
/* pillar accent colours */
.cap-card:nth-child(1) .cap-icon { color: var(--accent-security); background: rgba(224,78,90,0.08); border-color: rgba(224,78,90,0.16); }
.cap-card:nth-child(2) .cap-icon { color: var(--accent-compliance); background: rgba(167,139,250,0.10); border-color: rgba(167,139,250,0.18); }
.cap-card:nth-child(3) .cap-icon { color: var(--accent-finops); background: rgba(245,185,71,0.10); border-color: rgba(245,185,71,0.18); }
.cap-card:nth-child(4) .cap-icon { color: var(--accent-security); background: rgba(224,78,90,0.08); border-color: rgba(224,78,90,0.16); }
.cap-card:nth-child(5) .cap-icon { color: var(--accent-quality); background: rgba(34,211,160,0.10); border-color: rgba(34,211,160,0.18); }
.cap-card:nth-child(6) .cap-icon { color: var(--accent-lineage); background: rgba(167,139,250,0.10); border-color: rgba(167,139,250,0.18); }
.cap-card:nth-child(1)::before { background: linear-gradient(90deg, var(--accent-security), transparent 78%); }
.cap-card:nth-child(2)::before { background: linear-gradient(90deg, var(--accent-compliance), transparent 78%); }
.cap-card:nth-child(3)::before { background: linear-gradient(90deg, var(--accent-finops), transparent 78%); }
.cap-card:nth-child(4)::before { background: linear-gradient(90deg, var(--accent-security), transparent 78%); }
.cap-card:nth-child(5)::before { background: linear-gradient(90deg, var(--accent-quality), transparent 78%); }
.cap-card:nth-child(6)::before { background: linear-gradient(90deg, var(--accent-lineage), transparent 78%); }

/* ── CLOUD CARDS ── */
.cloud-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.cloud-card {
  background: var(--ink-2); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; transition: border-color 0.3s;
}
.cloud-card:hover { border-color: var(--border-2); }
.cloud-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.cloud-logo { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: var(--fs-micro); font-weight: 800; }
.azure-logo { background: rgba(0,120,212,0.12); color: #0078D4; border: 1px solid rgba(0,120,212,0.2); }
.aws-logo { background: rgba(255,153,0,0.1); color: #FF9900; border: 1px solid rgba(255,153,0,0.2); }
.cloud-name { font-size: var(--fs-h3); font-weight: 700; }
.cloud-status { font-size: var(--fs-micro); font-weight: 600; color: var(--brand); background: rgba(90,139,255,0.10); padding: 3px 9px; border-radius: 5px; margin-left: auto; }
.cloud-status.soon { color: var(--accent-finops); background: rgba(245,185,71,0.08); }
.int-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.int-item { display: flex; align-items: flex-start; gap: 10px; font-size: var(--fs-xs); color: var(--text-2); line-height: 1.5; }
.int-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--brand); flex-shrink: 0; margin-top: 7px; }
.int-item strong { color: var(--text); font-weight: 600; }
.tag-group-label { font-size: 10px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--text-3); margin-bottom: 8px; }
.tag-group { display: flex; flex-wrap: wrap; gap: 6px; }
.cloud-link { font-size: var(--fs-xs); font-weight: 700; color: var(--brand); text-decoration: none; }
.cloud-link:hover { text-decoration: underline; }

/* ── HYBRID CARD ── */
.hybrid-card {
  margin-top: 20px;
  background: linear-gradient(135deg, rgba(90,139,255,0.08) 0%, rgba(0,120,212,0.06) 45%, rgba(255,153,0,0.06) 100%);
  border: 1px solid var(--border-2); border-radius: var(--radius-lg); padding: 32px 28px;
}
.hybrid-header { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.hybrid-title { font-size: var(--fs-h3); font-weight: 700; }
.hybrid-desc { font-size: var(--fs-sm); color: var(--text-2); line-height: 1.7; margin-bottom: 20px; max-width: 800px; }
.hybrid-pillars { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.pillar { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 9px; padding: 16px 18px; }
.pillar-title { font-size: var(--fs-xs); font-weight: 700; margin-bottom: 5px; }
.pillar-desc { font-size: var(--fs-xxs); color: var(--text-3); line-height: 1.55; }

/* ── ROLE CARDS ── */
.role-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: 48px; }
.role-card {
  background: var(--ink-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 16px; text-align: center;
  transition: background 0.2s, border-color 0.3s, transform 0.2s;
}
.role-card:hover { background: var(--ink-3); border-color: var(--border-2); transform: translateY(-2px); }
.role-accent { width: 28px; height: 3px; border-radius: 2px; margin: 0 auto 14px; }
.role-title { font-size: var(--fs-sm); font-weight: 700; margin-bottom: 5px; }
.role-focus { font-size: var(--fs-xxs); color: var(--text-3); line-height: 1.5; }

/* ── PRODUCT GALLERY ── */
.shot-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.shot {
  margin: 0; background: var(--ink-3); border: 1px solid var(--border-2);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  transition: transform 0.2s, border-color 0.3s;
}
.shot:hover { transform: translateY(-3px); border-color: rgba(90,139,255,0.35); }
.shot.span-2 { grid-column: 1 / -1; }
.shot img { width: 100%; height: auto; display: block; border-bottom: 1px solid var(--border); }
.shot figcaption { padding: 12px 16px; font-size: var(--fs-xs); color: var(--text-2); }
.shot figcaption strong { color: var(--text); font-weight: 600; }

/* ── DEPLOYMENT CARDS ── */
.deploy-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.deploy-card { background: var(--ink-2); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; }
.deploy-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.deploy-badge { font-size: 10px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase; padding: 4px 10px; border-radius: 5px; display: inline-block; }
.badge-azure { background: rgba(0,120,212,0.1); color: #60AEFF; }
.badge-aws { background: rgba(255,153,0,0.1); color: #FFBD5A; }
.badge-hybrid { background: rgba(90,139,255,0.10); color: var(--brand); }
.deploy-logo { width: 34px; height: 34px; object-fit: contain; flex-shrink: 0; opacity: 0.95; }
.deploy-logo-group { display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0; }
.deploy-logo-group .deploy-logo { width: 28px; height: 28px; }
.deploy-logo-plus { font-size: var(--fs-sm); font-weight: 700; color: var(--text-3); line-height: 1; }
.deploy-title { font-size: var(--fs-body); font-weight: 700; margin-bottom: 10px; }
.deploy-desc { font-size: var(--fs-xs); color: var(--text-2); line-height: 1.65; }

/* ── INDUSTRY CARDS ── */
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 48px; }
.industry-card {
  background: var(--ink-2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 20px;
  transition: border-color 0.3s, background 0.2s;
}
.industry-card:hover { background: var(--ink-3); border-color: var(--border-2); }
.industry-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  background: rgba(90,139,255,0.06); border: 1px solid rgba(90,139,255,0.12);
  color: var(--brand);
}
.industry-icon svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.industry-title { font-size: var(--fs-sm); font-weight: 700; margin-bottom: 8px; }
.industry-desc { font-size: var(--fs-xs); color: var(--text-3); line-height: 1.6; }

/* ── PROCESS STEPS ── */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 48px; position: relative; }
.process-step { padding: 28px 24px; border: 1px solid var(--border); background: var(--ink-2); margin-right: -1px; margin-bottom: -1px; }
.step-num { font-size: 1.75rem; font-weight: 700; color: rgba(90,139,255,0.12); line-height: 1; margin-bottom: 14px; letter-spacing: -0.5px; }
.step-title { font-size: var(--fs-sm); font-weight: 700; margin-bottom: 7px; }
.step-desc { font-size: var(--fs-xs); color: var(--text-3); line-height: 1.6; }

/* ── PRICING CARDS ── */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.price-card {
  background: var(--ink-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: border-color 0.3s;
}
.price-card.featured {
  border-color: rgba(90,139,255,0.4);
  box-shadow: 0 0 0 1px rgba(90,139,255,0.12), 0 16px 40px rgba(0,0,0,0.4);
  position: relative;
}
.price-card.featured::before {
  content: ''; position: absolute; inset: -1px; border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(90,139,255,0.15), transparent 40%);
  z-index: -1; pointer-events: none;
}
.price-badge {
  align-self: flex-start;
  font-size: 10px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--brand); background: rgba(90,139,255,0.12);
  padding: 4px 12px; border-radius: 5px; margin-bottom: 16px;
}
.price-name { font-size: 1.375rem; font-weight: 700; letter-spacing: -0.3px; display: flex; align-items: center; gap: 10px; }
.price-tagline { font-size: var(--fs-xs); color: var(--text-3); line-height: 1.55; margin: 8px 0 20px; }
.price-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 12px; margin-bottom: 28px; flex: 1;
}
.price-feature {
  font-size: var(--fs-sm); color: var(--text-2);
  display: flex; gap: 10px; align-items: flex-start; line-height: 1.5;
}
.price-feature::before { content: ''; width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='rgba(90,139,255,0.12)' stroke='rgba(90,139,255,0.3)' stroke-width='1'/%3E%3Cpath d='M6.5 10.5l2.2 2 4.3-4.5' fill='none' stroke='%235A8BFF' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain; }
.price-feature.inherit { color: var(--text-3); }
.price-feature.inherit::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='10' cy='10' r='9' fill='rgba(255,255,255,0.04)' stroke='rgba(255,255,255,0.1)' stroke-width='1'/%3E%3Cpath d='M7 10h6' fill='none' stroke='%237A82A0' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); }
.price-cta { text-align: center; width: 100%; }
.packs-note {
  margin-top: 20px;
  background: rgba(90,139,255,0.04); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
  font-size: var(--fs-sm); color: var(--text-2); line-height: 1.6;
}
.packs-note strong { color: var(--text); }

/* ── FAQ ACCORDION ── */
.faq-list { margin-top: 36px; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); background: var(--ink-2); transition: background 0.2s; }
.faq-item:last-child { border-bottom: none; }
.faq-item[open] { background: var(--ink-3); }
.faq-item summary {
  cursor: pointer; padding: 18px 24px;
  font-size: var(--fs-body); font-weight: 600; color: var(--text);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; color: var(--brand);
  font-size: var(--fs-h3); font-weight: 700; line-height: 1; flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-a { padding: 0 24px 20px; font-size: var(--fs-sm); color: var(--text-2); line-height: 1.7; }
.faq-a a { color: var(--brand); text-decoration: none; }
.faq-a a:hover { text-decoration: underline; }

/* ── COMPLIANCE FRAMEWORK LIST ── */
.compliance-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 48px; }
.fw-list { display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.fw-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid var(--border); background: var(--ink-2);
  transition: background 0.15s;
}
.fw-row:last-child { border-bottom: none; }
.fw-row:hover { background: var(--ink-3); }
.fw-name { font-size: var(--fs-xs); font-weight: 600; }
.fw-region { font-size: var(--fs-micro); color: var(--text-3); margin-top: 2px; }
.fw-status { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.fw-status.mapped { background: rgba(90,139,255,0.10); color: var(--brand); }
.fw-status.partial { background: rgba(245,185,71,0.1); color: var(--accent-finops); }

/* ── INFO BOX ── */
.info-box {
  background: var(--ink-3); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px;
}
.info-box-title { font-size: var(--fs-xs); font-weight: 700; margin-bottom: 14px; color: var(--text); }
.info-box-list { display: flex; flex-direction: column; gap: 12px; }
.info-box-item {
  display: flex; gap: 12px;
  font-size: var(--fs-xs); color: var(--text-2);
}
.info-box-item::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand); flex-shrink: 0; margin-top: 7px;
}
.info-box-sm { padding: 20px 24px; }
.info-box-sm .info-box-title { margin-bottom: 10px; }

/* ── AUTH BOX ── */
.auth-box {
  margin-top: 20px; background: var(--ink-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 28px;
  display: flex; gap: 24px; align-items: center; flex-wrap: wrap;
}
.auth-box-item { flex: 1; min-width: 240px; }
.auth-box-title { font-size: var(--fs-sm); font-weight: 700; margin-bottom: 6px; }
.auth-box-desc { font-size: var(--fs-xs); color: var(--text-2); }

/* ── CTA ── */
.cta-section {
  margin: 0 clamp(24px, 5vw, 80px) clamp(64px, 8vw, 96px);
  background: var(--ink-2); border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 6vw, 80px) clamp(32px, 5vw, 80px);
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90,139,255,0.06), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.cta-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; flex-shrink: 0; position: relative; }
.cta-fine { font-size: var(--fs-xxs); color: var(--text-3); text-align: center; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px clamp(24px, 5vw, 80px);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-left { display: flex; align-items: center; gap: 24px; }
.footer-brand { font-size: var(--fs-sm); font-weight: 700; color: var(--text-2); }
.footer-brand span { color: var(--brand); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: var(--fs-xs); color: var(--text-3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text-2); }
.footer-right { font-size: var(--fs-xxs); color: var(--text-3); }

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  nav { height: auto; min-height: 64px; flex-wrap: wrap; gap: 12px 18px; padding-top: 12px; padding-bottom: 12px; }
  .nav-links { order: 3; width: 100%; justify-content: flex-start; flex-wrap: wrap; gap: 14px 18px; }
  .nav-links a.active::after { display: none; }
  .nav-actions { margin-left: auto; }
}
@media (max-width: 900px) { .role-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 860px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 36px; padding-top: 56px; }
  .hero-sub, .section-desc { max-width: none; }
  .cloud-badges { flex-wrap: wrap; align-items: stretch; }
  .hero-preview { max-width: 680px; }
  .cap-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .shot-grid { grid-template-columns: 1fr; }
  .shot.span-2 { grid-column: auto; }
}
@media (max-width: 720px) {
  .cloud-grid { grid-template-columns: 1fr; }
  .compliance-cols { grid-template-columns: 1fr; }
  .deploy-grid { grid-template-columns: 1fr; }
  .cta-section { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; width: 100%; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .topbar { padding: 10px 16px; font-size: var(--fs-xxs); line-height: 1.5; }
  nav { padding-left: 16px; padding-right: 16px; }
  .nav-burger { display: flex; }
  .nav-links { display: none; order: 4; width: 100%; flex-direction: column; align-items: flex-start; gap: 14px; padding-top: 4px; }
  #nav-toggle:checked ~ .nav-links { display: flex; }
  .nav-logo-mark { height: 32px; }
  .nav-wordmark { font-size: var(--fs-sm); }
  .nav-submark { font-size: 10px; }
  .nav-actions { width: 100%; margin-left: 0; flex-direction: column; }
  .nav-actions a { width: 100%; text-align: center; justify-content: center; }
  .btn-ghost, .btn-primary-sm, .btn-primary, .btn-outline { min-height: 46px; }
  .hero-wrap, .section, .cta-section, footer { padding-left: 16px; padding-right: 16px; }
  .hero-wrap { padding-top: 44px; padding-bottom: 44px; }
  .hero-ctas { flex-direction: column; margin-bottom: 28px; }
  .hero-ctas a, .cta-actions a { width: 100%; }
  .cloud-badge { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .preview-role-strip { overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
  .preview-role-strip::-webkit-scrollbar { display: none; }
  .kpi-4, .chart-2 { grid-template-columns: 1fr; }
  .stat-item { width: 100%; padding: 22px 20px; border-right: none; border-bottom: 1px solid var(--border); }
  .role-grid, .industry-grid, .process-grid { grid-template-columns: 1fr; }
  .role-grid { grid-template-columns: repeat(2, 1fr); }
  .hybrid-pillars { grid-template-columns: 1fr; }
  .cta-section { margin-left: 16px; margin-right: 16px; padding-top: 32px; padding-bottom: 32px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .footer-left, .footer-links { flex-direction: column; gap: 12px; }
  .page-header { padding-top: 56px; padding-bottom: 36px; }
}
@media (max-width: 500px) { .role-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) {
  h1 { font-size: 1.875rem; line-height: 1.08; }
  .section-heading { font-size: 1.75rem; }
  .hero-sub, .section-desc, .hybrid-desc { font-size: var(--fs-sm); }
  .process-step, .cloud-card, .deploy-card, .industry-card, .cap-card { padding: 22px 18px; }
}
