/* ============================================================
   ClearSky OMEGA — shared site styles
   SAP-style enterprise banner + ClearSky dark-navy identity.
   Linked by every page so the header/footer are byte-identical.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cs-bg: #FFFFFF;
  --cs-panel: #F4F7FA;
  --cs-card: #FFFFFF;
  --cs-card-2: #F7F9FC;
  --cs-navy: #0E1A24;          /* deep hero / dark bands */
  --cs-navy-2: #0A141C;
  --cs-blue: #0089BD;          /* accent on light */
  --cs-blue-bright: #00AEEF;   /* accent on dark */
  --cs-blue-dim: rgba(0,137,189,0.09);
  --cs-blue-mid: rgba(0,137,189,0.30);
  --cs-amber: #C77A00;
  --cs-ink: #0E1A24;           /* primary text */
  --cs-muted: #5A6B7B;         /* secondary text */
  --cs-muted-2: #8A98A6;       /* tertiary text */
  --cs-border: rgba(14,26,36,0.10);
  --cs-border-blue: rgba(0,137,189,0.28);
  --shadow-lg: 0 24px 60px rgba(14,26,36,0.14);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cs-bg);
  color: var(--cs-ink);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; }

/* ============================================================
   TOP BANNER — the SAP-style two-row header
   Row 1: utility bar (login / region / search)
   Row 2: main nav (logo + sections + demo CTA)
   ============================================================ */

.omega-banner { position: sticky; top: 0; z-index: 200; }

/* --- Utility bar --- */
.util-bar {
  display: flex; align-items: center; justify-content: flex-end; gap: 20px;
  background: var(--cs-navy);
  padding: 0 clamp(16px, 4vw, 48px);
  height: 38px;
  font-size: 12.5px;
}
.util-bar a { color: rgba(255,255,255,0.72); text-decoration: none; transition: color 0.15s; white-space: nowrap; display: inline-flex; align-items: center; gap: 6px; }
.util-bar a:hover { color: #FFFFFF; }
.util-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.16); }
.util-login { font-weight: 600; color: #FFFFFF !important; }
.util-login svg { color: var(--cs-blue-bright); }
.util-flag {
  width: 20px; height: 14px; border-radius: 2px; overflow: hidden; flex-shrink: 0;
  background: linear-gradient(180deg,#b22234 0 46%, #fff 46% 54%, #3c3b6e 54% 100%);
  border: 0.5px solid rgba(255,255,255,0.25);
}

/* --- Main nav --- */
.main-nav {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--cs-border);
  padding: 0 clamp(16px, 4vw, 48px);
  height: 66px;
}
.brand { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.brand img { height: 46px; width: auto; display: block; border-radius: 10px; }

.nav-links { display: flex; align-items: center; gap: 28px; margin-left: 40px; margin-right: auto; }
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--cs-muted);
  text-decoration: none; transition: color 0.18s; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 5px; cursor: pointer;
}
.nav-link:hover, .nav-link.active { color: var(--cs-ink); }
.nav-link.active { font-weight: 600; }

/* mega dropdown */
.mega { position: relative; }
.mega > .nav-link svg { transition: transform 0.2s; }
.mega:hover > .nav-link svg { transform: rotate(180deg); }
.mega-panel {
  position: absolute; top: calc(100% + 14px); left: 0;
  transform: translateY(-6px);
  width: 560px; max-width: min(92vw, 560px);
  background: var(--cs-navy); border: 0.5px solid var(--cs-border-blue);
  border-radius: 14px; padding: 20px; opacity: 0; visibility: hidden;
  transition: opacity 0.16s, transform 0.16s; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 20px; z-index: 210;
}
.mega:hover .mega-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-label { grid-column: 1 / -1; font-size: 10.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cs-blue-bright); padding: 4px 10px 8px; }
.mega-item { display: block; padding: 10px 12px; border-radius: 9px; text-decoration: none; transition: background 0.14s; }
.mega-item:hover { background: rgba(0,174,239,0.10); }
.mega-item .mi-t { font-size: 14px; font-weight: 600; color: #FFFFFF; margin-bottom: 2px; }
.mega-item .mi-d { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.4; }

.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-search {
  width: 36px; height: 36px; border-radius: 8px; border: 0.5px solid var(--cs-border);
  background: none; display: flex; align-items: center; justify-content: center;
  color: var(--cs-muted); cursor: pointer; transition: border-color 0.18s, color 0.18s;
}
.nav-search:hover { border-color: var(--cs-border-blue); color: var(--cs-ink); }
.btn-demo {
  background: var(--cs-blue); color: #FFFFFF; border: none;
  padding: 10px 20px; border-radius: 8px; font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 14px; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; transition: opacity 0.18s;
  white-space: nowrap;
}
.btn-demo:hover { opacity: 0.9; }
.nav-toggle {
  display: none; width: 40px; height: 40px; border-radius: 8px;
  border: 0.5px solid var(--cs-border); background: none; color: var(--cs-ink);
  align-items: center; justify-content: center; cursor: pointer;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--cs-blue); color: #FFFFFF; border: none;
  padding: 14px 28px; border-radius: 8px; font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 15px; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 9px; transition: opacity 0.18s, transform 0.18s;
}
.btn-primary:hover { opacity: 0.92; transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--cs-ink);
  border: 0.5px solid var(--cs-border-blue); padding: 14px 28px; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 15px; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  transition: border-color 0.18s, color 0.18s;
}
.btn-ghost:hover { border-color: var(--cs-blue); color: var(--cs-blue); }
.btn-amber {
  background: var(--cs-amber); color: #FFFFFF; border: none;
  padding: 14px 28px; border-radius: 8px; font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 15px; cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 9px; transition: opacity 0.18s;
}
.btn-amber:hover { opacity: 0.9; }

/* on-dark button variants */
.on-dark .btn-ghost { color: #FFFFFF; border-color: rgba(255,255,255,0.28); }
.on-dark .btn-ghost:hover { border-color: var(--cs-blue-bright); color: var(--cs-blue-bright); }

/* ============================================================
   PAGE HERO — dark band with the neon banner image
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(0,174,239,0.18), transparent 60%),
    var(--cs-navy);
  border-bottom: 0.5px solid var(--cs-border);
}
/* SAP-style: centered, minimal copy, neon frame as the clickable centerpiece */
.hero-wrap {
  max-width: 900px; margin: 0 auto; text-align: center;
  padding: clamp(48px, 6vw, 78px) clamp(16px, 4vw, 48px) 0;
  display: flex; flex-direction: column; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cs-blue-bright); margin-bottom: 20px;
}
.hero-eyebrow::before, .hero-eyebrow::after { content: ''; width: 26px; height: 1px; background: var(--cs-blue-bright); }
.page-hero h1 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(36px, 6vw, 72px); line-height: 1.02; letter-spacing: -2.4px;
  color: #FFFFFF; margin-bottom: 18px; max-width: 15ch;
}
.page-hero h1 .accent { color: var(--cs-blue-bright); }
.hero-sub {
  font-size: clamp(15px, 1.7vw, 19px); line-height: 1.55;
  color: rgba(255,255,255,0.75); max-width: 620px; margin-bottom: 30px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-bottom: clamp(36px, 5vw, 60px); }

/* interior pages: two-column split hero (copy left, neon right) */
.hero-wrap.split {
  max-width: 1200px; text-align: left; flex-direction: row; align-items: center;
  gap: 52px; padding-bottom: clamp(48px, 6vw, 78px);
}
.hero-wrap.split .hero-copy { flex: 1.05; }
.hero-wrap.split .hero-eyebrow::after { display: none; }
.hero-wrap.split .page-hero h1, .hero-wrap.split h1 { font-size: clamp(32px, 4.4vw, 52px); letter-spacing: -1.6px; }
.hero-wrap.split .hero-actions { justify-content: flex-start; margin-bottom: 0; }
.hero-wrap.split .hero-visual { flex: 0.95; max-width: 560px; margin: 0; }
.hero-wrap.split .hero-play { top: -6%; }
.hero-wrap.split .hero-caption { margin-top: 14px; }

/* neon frame as the clickable video trigger (SAP's shape-in-hero) */
.hero-visual { position: relative; width: 100%; max-width: 1120px; margin: 0 auto; }
.hero-frame {
  position: relative; display: block; width: 100%; border: none; cursor: pointer;
  background: transparent; padding: 0;
  filter: drop-shadow(0 30px 80px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
}
.hero-frame img { width: 100%; height: auto; display: block; }
/* the play button centered inside the neon ring */
.hero-play {
  position: absolute; inset: 0; margin: auto;
  width: clamp(64px, 8vw, 96px); height: clamp(64px, 8vw, 96px); border-radius: 50%;
  background: rgba(255,255,255,0.96); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 40px rgba(0,174,239,0.4); z-index: 3;
  transition: transform 0.2s, background 0.2s;
  /* nudge up to sit inside the ring, not on the reflection */
  top: -8%;
}
.hero-frame:hover .hero-play { transform: scale(1.08); background: #FFFFFF; }
.hero-play svg { color: var(--cs-blue); margin-left: 5px; }
.hero-play::before {
  content: ''; position: absolute; inset: -12px; border-radius: 50%;
  border: 1.5px solid rgba(0,174,239,0.55); animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: 0.85; } 100% { transform: scale(1.5); opacity: 0; } }
.hero-caption {
  display: inline-flex; align-items: center; gap: 8px; margin: 18px auto 0;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; color: rgba(255,255,255,0.72);
}
.hero-caption .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cs-blue-bright); box-shadow: 0 0 10px var(--cs-blue-bright); }

/* interior pages: static neon visual (no video) */
.hero-still { position: relative; width: 100%; filter: drop-shadow(0 30px 80px rgba(0,0,0,0.5)); }
.hero-still img { width: 100%; height: auto; display: block; }

/* ============================================================
   VALUE-CHAIN RAIL — the end-to-end network as an ordered flow
   ============================================================ */
.chain { position: relative; margin-top: 8px; }
.chain-line {
  position: absolute; top: 26px; left: 4%; right: 4%; height: 2px;
  background: linear-gradient(90deg, rgba(0,174,239,0.15), var(--cs-blue-bright) 50%, rgba(0,174,239,0.15));
}
.chain-steps { display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px; position: relative; }
.chain-step { text-align: center; position: relative; }
.chain-node {
  width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(0,174,239,0.4);
  display: flex; align-items: center; justify-content: center; color: var(--cs-blue-bright);
  position: relative; z-index: 2; transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.chain-step:hover .chain-node { transform: translateY(-3px); background: rgba(0,174,239,0.12); border-color: var(--cs-blue-bright); }
.chain-idx { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: var(--cs-blue-bright); margin-bottom: 5px; }
.chain-name { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: #FFFFFF; letter-spacing: -0.1px; margin-bottom: 4px; line-height: 1.15; }
.chain-desc { font-size: 11px; line-height: 1.4; color: rgba(255,255,255,0.55); }

/* vendor replacement contrast row */
.vs-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: center; margin-top: 52px; }
.vs-card { border-radius: 14px; padding: 26px 28px; }
.vs-old { background: rgba(255,255,255,0.03); border: 0.5px solid rgba(255,255,255,0.10); }
.vs-new { background: rgba(0,174,239,0.08); border: 1px solid rgba(0,174,239,0.4); }
.vs-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 14px; }
.vs-old .vs-label { color: rgba(255,255,255,0.5); }
.vs-new .vs-label { color: var(--cs-blue-bright); }
.vs-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.vs-chip { font-size: 12px; font-weight: 500; padding: 6px 12px; border-radius: 8px; }
.vs-old .vs-chip { color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.05); border: 0.5px solid rgba(255,255,255,0.08); text-decoration: line-through; text-decoration-color: rgba(255,255,255,0.25); }
.vs-new .vs-chip { color: #FFFFFF; background: rgba(0,174,239,0.14); border: 0.5px solid rgba(0,174,239,0.3); }
.vs-arrow { color: var(--cs-blue-bright); flex-shrink: 0; }
.vs-new .vs-single { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; color: #FFFFFF; letter-spacing: -0.4px; display: flex; align-items: center; gap: 10px; }

/* ============================================================
   GLOBAL REACH BAND
   ============================================================ */
.reach { border-bottom: 0.5px solid var(--cs-border); background: var(--cs-navy); position: relative; overflow: hidden; }
.reach-inner { max-width: 1200px; margin: 0 auto; padding: clamp(56px, 7vw, 84px) clamp(16px, 4vw, 48px); display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.reach h2 { font-family: 'Syne', sans-serif; font-size: clamp(27px, 3.6vw, 40px); font-weight: 700; letter-spacing: -0.8px; line-height: 1.12; color: #FFFFFF; margin-bottom: 18px; }
.reach h2 .accent { color: var(--cs-blue-bright); }
.reach p { font-size: 15.5px; line-height: 1.72; color: rgba(255,255,255,0.68); margin-bottom: 26px; max-width: 46ch; }
.reach-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.reach-stat { background: rgba(255,255,255,0.04); border: 0.5px solid rgba(255,255,255,0.10); border-radius: 12px; padding: 20px; }
.reach-stat .n { font-family: 'Syne', sans-serif; font-size: 26px; font-weight: 800; color: #FFFFFF; letter-spacing: -0.5px; line-height: 1; }
.reach-stat .n span { color: var(--cs-blue-bright); }
.reach-stat .l { font-size: 11.5px; color: rgba(255,255,255,0.6); margin-top: 8px; line-height: 1.4; }
/* stylised globe / grid visual */
.reach-visual { position: relative; aspect-ratio: 1.25 / 1; border-radius: 16px; border: 0.5px solid rgba(0,174,239,0.25); background: radial-gradient(120% 120% at 50% 20%, rgba(0,174,239,0.16), transparent 60%), #0A141C; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.reach-visual svg { width: 100%; height: 100%; }

@media (max-width: 1024px) {
  .chain-steps { grid-template-columns: repeat(4, 1fr); gap: 24px 8px; }
  .chain-line { display: none; }
  .vs-row { grid-template-columns: 1fr; gap: 16px; }
  .vs-arrow { transform: rotate(90deg); margin: 0 auto; }
  .reach-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 720px) {
  .chain-steps { grid-template-columns: repeat(2, 1fr); }
  .reach-stats { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-play::before { animation: none; }
  .btn-primary:hover { transform: none; }
  .hero-frame:hover { transform: none; }
}

/* ============================================================
   PROOF STRIP
   ============================================================ */
.proof {
  display: flex; align-items: center; gap: 36px; flex-wrap: wrap;
  padding: 22px clamp(16px, 4vw, 48px); border-bottom: 0.5px solid var(--cs-border);
  background: var(--cs-panel);
}
.proof-label { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cs-muted-2); white-space: nowrap; }
.proof-marks { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; }
.proof-mark { display: flex; align-items: center; gap: 9px; color: var(--cs-muted); font-size: 13.5px; font-weight: 500; }
.proof-mark svg { color: var(--cs-blue); opacity: 0.85; flex-shrink: 0; }

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { max-width: 1200px; margin: 0 auto; padding: clamp(56px, 7vw, 84px) clamp(16px, 4vw, 48px); }
.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow { font-size: 11.5px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cs-blue); margin-bottom: 15px; }
.section-title { font-family: 'Syne', sans-serif; font-size: clamp(27px, 3.6vw, 40px); font-weight: 700; letter-spacing: -0.8px; line-height: 1.12; margin-bottom: 16px; }
.section-title .accent { color: var(--cs-blue); }
.section-desc { font-size: clamp(15px, 1.5vw, 16.5px); line-height: 1.7; color: var(--cs-muted); }

/* dark section variant */
.section-dark { background: var(--cs-navy); }
.section-dark .section-title { color: #FFFFFF; }
.section-dark .section-title .accent { color: var(--cs-blue-bright); }
.section-dark .eyebrow { color: var(--cs-blue-bright); }
.section-dark .section-desc { color: rgba(255,255,255,0.68); }

/* ============================================================
   CAPABILITY / PILLAR GRID
   ============================================================ */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.pillar {
  background: rgba(255,255,255,0.035); border: 0.5px solid rgba(255,255,255,0.10);
  border-radius: 13px; padding: 26px 22px;
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.pillar:hover { border-color: rgba(0,174,239,0.45); transform: translateY(-3px); background: rgba(0,174,239,0.06); }
.pillar-ic { width: 42px; height: 42px; border-radius: 10px; background: rgba(0,174,239,0.14); display: flex; align-items: center; justify-content: center; color: var(--cs-blue-bright); margin-bottom: 16px; }
.pillar-name { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 700; letter-spacing: -0.2px; margin-bottom: 8px; color: #FFFFFF; }
.pillar-desc { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.6); }

/* metrics strip on dark */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 46px; border: 0.5px solid rgba(255,255,255,0.10); border-radius: 14px; overflow: hidden; }
.metric { padding: 28px 26px; border-right: 0.5px solid rgba(255,255,255,0.09); }
.metric:last-child { border-right: none; }
.metric-n { font-family: 'Syne', sans-serif; font-size: 30px; font-weight: 800; letter-spacing: -0.6px; line-height: 1; color: #FFFFFF; }
.metric-n span { color: var(--cs-blue-bright); }
.metric-l { font-size: 12.5px; line-height: 1.5; color: rgba(255,255,255,0.6); margin-top: 9px; }

/* ============================================================
   FEATURE / CARD GRID (light)
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cards.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cards.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--cs-card); border: 0.5px solid var(--cs-border);
  border-radius: 13px; padding: 28px 26px; text-decoration: none; display: block;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--cs-border-blue); transform: translateY(-2px); }
.card-ic { width: 42px; height: 42px; border-radius: 10px; background: var(--cs-blue-dim); display: flex; align-items: center; justify-content: center; color: var(--cs-blue); margin-bottom: 16px; }
.card-name { font-family: 'Syne', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: -0.2px; margin-bottom: 9px; color: var(--cs-ink); }
.card-desc { font-size: 13.5px; line-height: 1.62; color: var(--cs-muted); }
.card-go { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-size: 13.5px; font-weight: 600; color: var(--cs-blue); }

/* ============================================================
   CONTENT BAND (alternating copy + visual)
   ============================================================ */
.band { border-bottom: 0.5px solid var(--cs-border); }
.band-alt { background: var(--cs-card-2); }
.band-inner { max-width: 1200px; margin: 0 auto; padding: clamp(52px, 7vw, 80px) clamp(16px, 4vw, 48px); display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.band.reverse .band-visual { order: 2; }
.band.reverse .band-copy { order: 1; }
.band-copy h2 { font-family: 'Syne', sans-serif; font-size: clamp(26px, 3.4vw, 36px); font-weight: 700; letter-spacing: -0.8px; line-height: 1.12; margin-bottom: 18px; }
.band-copy > p { font-size: 15.5px; line-height: 1.72; color: var(--cs-muted); margin-bottom: 22px; max-width: 46ch; }
.points { display: flex; flex-direction: column; gap: 13px; margin-bottom: 26px; }
.point { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; line-height: 1.5; }
.point svg { color: var(--cs-blue); flex-shrink: 0; margin-top: 2px; }
.point span { color: var(--cs-muted); }
.point strong { color: var(--cs-ink); font-weight: 600; }
.band-link { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; color: var(--cs-blue); text-decoration: none; transition: gap 0.16s; }
.band-link:hover { gap: 13px; }

.band-visual { position: relative; border-radius: 16px; border: 0.5px solid var(--cs-border); background: linear-gradient(150deg, var(--cs-card), var(--cs-card-2)); min-height: 320px; overflow: hidden; padding: 28px; }
.bv-grid { position: absolute; inset: 0; opacity: 0.6; background-image: linear-gradient(rgba(0,174,239,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,174,239,0.05) 1px, transparent 1px); background-size: 34px 34px; }
.bv-tag { position: relative; display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cs-blue); background: var(--cs-blue-dim); border: 0.5px solid var(--cs-border-blue); padding: 5px 12px; border-radius: 20px; margin-bottom: 20px; }
.bv-rows { position: relative; display: flex; flex-direction: column; gap: 10px; }
.bv-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; background: var(--cs-panel); border: 0.5px solid var(--cs-border); border-radius: 9px; padding: 13px 15px; }
.bv-row .bvr-l { display: flex; align-items: center; gap: 11px; font-size: 13px; color: var(--cs-ink); font-weight: 500; }
.bv-row .bvr-ic { width: 30px; height: 30px; border-radius: 7px; background: var(--cs-blue-dim); display: flex; align-items: center; justify-content: center; color: var(--cs-blue); flex-shrink: 0; }
.bv-row .bvr-v { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; color: var(--cs-blue); white-space: nowrap; }
.bv-row.amber .bvr-ic { background: rgba(199,122,0,0.14); color: var(--cs-amber); }
.bv-row.amber .bvr-v { color: var(--cs-amber); }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip { background: linear-gradient(135deg, var(--cs-navy), var(--cs-navy-2)); border-bottom: 0.5px solid var(--cs-border); }
.cta-inner { max-width: 1000px; margin: 0 auto; padding: clamp(52px, 7vw, 76px) clamp(16px, 4vw, 48px); text-align: center; }
.cta-inner h2 { font-family: 'Syne', sans-serif; font-size: clamp(26px, 3.6vw, 38px); font-weight: 800; letter-spacing: -0.7px; line-height: 1.12; color: #FFFFFF; margin-bottom: 16px; }
.cta-inner h2 .accent { color: var(--cs-blue-bright); }
.cta-inner p { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--cs-bg); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; padding: 56px clamp(16px, 4vw, 48px) 40px; }
.footer-brand img { height: 42px; margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 13px; line-height: 1.6; color: var(--cs-muted); max-width: 34ch; margin-bottom: 16px; }
.footer-tag { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; color: var(--cs-blue); }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cs-muted-2); margin-bottom: 15px; }
.footer-col a { display: block; font-size: 13.5px; color: var(--cs-muted); text-decoration: none; padding: 5px 0; transition: color 0.15s; }
.footer-col a:hover { color: var(--cs-blue); }
.footer-bottom { border-top: 0.5px solid var(--cs-border); max-width: 1200px; margin: 0 auto; padding: 20px clamp(16px, 4vw, 48px); display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 12.5px; color: var(--cs-muted-2); }
.footer-bottom a { color: var(--cs-muted-2); text-decoration: none; }
.footer-bottom a:hover { color: var(--cs-ink); }

/* ============================================================
   VIDEO MODAL — SAP-style full-screen takeover
   (fades in over the whole page; title top-left, close top-right,
   large video on a black stage)
   ============================================================ */
.video-modal {
  position: fixed; inset: 0; z-index: 500; display: none;
  flex-direction: column; background: #FFFFFF;
  opacity: 0; transition: opacity 0.28s ease;
}
.video-modal.open { opacity: 1; }
.video-topbar {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: clamp(20px, 3vw, 40px) clamp(20px, 4vw, 56px) clamp(16px, 2vw, 28px);
  flex-shrink: 0;
}
.video-topbar h3 { font-family: 'Syne', sans-serif; font-size: clamp(20px, 2.4vw, 30px); font-weight: 800; letter-spacing: -0.6px; color: var(--cs-ink); }
.video-topbar .vt-sub { font-size: 15px; color: var(--cs-muted); margin-top: 8px; max-width: 60ch; line-height: 1.5; }
.video-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.video-icon { width: 40px; height: 40px; border-radius: 50%; border: none; background: var(--cs-panel); color: var(--cs-muted); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.16s, color 0.16s; }
.video-icon:hover { background: var(--cs-blue-dim); color: var(--cs-blue); }
.video-close { width: 42px; height: 42px; border-radius: 50%; border: none; background: var(--cs-panel); color: var(--cs-ink); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.16s; margin-left: 6px; }
.video-close:hover { background: var(--cs-blue-dim); color: var(--cs-blue); }
.video-stage {
  flex: 1; margin: 0 clamp(20px, 4vw, 56px) clamp(20px, 4vw, 56px);
  background: #05090d; border-radius: 14px; overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.video-stage video, .video-stage iframe { width: 100%; height: 100%; object-fit: cover; border: none; }
.video-stage > img { width: 100%; height: 100%; object-fit: cover; opacity: 0.42; position: absolute; inset: 0; }
.video-placeholder { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; text-align: center; padding: 24px; }
.video-placeholder .vp-badge { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cs-blue-bright); background: rgba(0,174,239,0.16); border: 0.5px solid var(--cs-border-blue); padding: 7px 16px; border-radius: 20px; }
.video-placeholder p { color: rgba(255,255,255,0.82); font-size: 15px; line-height: 1.65; max-width: 46ch; }
.video-placeholder code { color: var(--cs-blue-bright); background: rgba(0,174,239,0.12); padding: 2px 7px; border-radius: 5px; font-size: 13px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-visual { max-width: 760px; }
  .pillars { grid-template-columns: 1fr 1fr; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(2) { border-right: none; }
  .metric:nth-child(1), .metric:nth-child(2) { border-bottom: 0.5px solid rgba(255,255,255,0.09); }
  .cards, .cards.cols-4 { grid-template-columns: 1fr 1fr; }
  .band-inner { grid-template-columns: 1fr; gap: 34px; }
  .band.reverse .band-visual, .band.reverse .band-copy { order: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .util-bar { gap: 14px; justify-content: center; }
  .util-bar .util-hide { display: none; }
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: #FFFFFF; border-bottom: 0.5px solid var(--cs-border); margin: 0; padding: 8px 0; box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; }
  .nav-link { padding: 13px 20px; font-size: 15px; }
  .mega { width: 100%; }
  .mega-panel { position: static; opacity: 1; visibility: visible; transform: none; display: block; width: 100%; background: transparent; border: none; box-shadow: none; padding: 0 0 0 16px; }
  .mega-label { color: var(--cs-blue); }
  .mega-item .mi-t { color: var(--cs-ink); }
  .mega-item .mi-d { color: var(--cs-muted); }
  .mega:hover > .nav-link svg { transform: none; }
  .nav-toggle { display: flex; }
  .nav-search { display: none; }
  .btn-demo { padding: 9px 15px; font-size: 13px; }
  .pillars { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr; }
  .metric { border-right: none; border-bottom: 0.5px solid rgba(255,255,255,0.09); }
  .metric:last-child { border-bottom: none; }
  .cards, .cards.cols-4, .cards.cols-2 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .proof { gap: 16px; }
}
