

:root {
  --navy-deep: #0E2040;
  --navy: #1B3A6B;
  --blue: #4A7FB5;
  --orange: #F5A623;
  --orange-light: #f7b94a;
  --orange-dark: #D4891A;
  --white: #ffffff;
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --white-40: rgba(255,255,255,0.4);
  --white-15: rgba(255,255,255,0.15);
  --white-08: rgba(255,255,255,0.08);
  --white-03: rgba(255,255,255,0.03);
  --card-bg: rgba(27,58,107,0.35);
  --card-border: rgba(74,127,181,0.2);
  --off: #F4F7FB;
  --ink: #0E2040;
  --ink-70: rgba(14,32,64,0.68);
  --ink-40: rgba(14,32,64,0.42);
  --ink-border: rgba(14,32,64,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--navy-deep);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
}
@media (hover: none) { body { cursor: auto; } }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(74,127,181,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 0% 80%, rgba(74,127,181,0.15) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* CURSOR */
.cursor-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); }
.cursor-ring { width: 32px; height: 32px; border: 1.5px solid rgba(245,166,35,0.45); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: width 0.15s, height 0.15s, border-color 0.15s; }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  width: 0%;
  z-index: 1000;
  transition: width 0.1s linear;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 48px;
  border-bottom: 1px solid var(--white-08);
  background: rgba(14,32,64,0.82);
  backdrop-filter: blur(14px);
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 28px; width: auto; }
.nav-logo span { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; color: var(--white); }
.nav-logo .oc { color: var(--orange); }

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links > li:first-child a { margin-left: 0; }
.nav-links a {
  margin-left: 34px; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--white-70); text-decoration: none; transition: color 0.2s; position: relative;
}
.nav-links a:hover { color: var(--orange-light); }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: 28px; left: -16px; min-width: 240px;
  background: var(--navy); border: 1px solid var(--card-border); border-radius: 10px; padding: 10px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { display: block; padding: 9px 12px; border-radius: 6px; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.02em; text-transform: none; color: var(--white-70); }
.nav-dropdown-menu a:hover { background: var(--white-03); color: var(--orange-light); }

.nav-cta {
  display: inline-flex; align-items: center; background: var(--orange); color: var(--navy-deep);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  padding: 11px 22px; border-radius: 7px; box-shadow: 0 4px 18px rgba(245,166,35,0.3);
  transition: background 0.2s, transform 0.2s;
}
.nav-cta:hover { background: var(--orange-light); transform: translateY(-1px); }
.nav-toggle { display: none; }

/* LAYOUT */
.main-content { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 48px; }

/* HERO */
.hero { padding: 56px 0 72px; text-align: center; position: relative; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(90px); z-index: 0; }
.orb-1 { width: 520px; height: 520px; background: var(--blue); top: -220px; right: -120px; opacity: 0.16; animation: drift1 9s ease-in-out infinite; }
@keyframes drift1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-30px,24px); } }
.hero > *:not(.orb) { position: relative; z-index: 1; }

.hero-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 24px; }
.hero h1 { font-size: clamp(2.6rem, 5.2vw, 4.4rem); font-weight: 800; letter-spacing: -0.01em; line-height: 1.08; color: var(--white); margin-bottom: 22px; }
.hero h1 em { font-style: normal; font-weight: 900; color: var(--orange-light); }
.hero-sub { font-size: 0.95rem; color: var(--white-70); max-width: 620px; margin: 0 auto 40px; line-height: 1.78; }
.hero-ctas { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; gap: 8px; font-family: 'Montserrat', sans-serif;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; padding: 15px 30px; border-radius: 8px;
  transition: background 0.2s, transform 0.2s, border-color 0.2s, color 0.2s;
}
.btn-primary { background: var(--orange); color: var(--navy-deep); border: 1px solid var(--orange); box-shadow: 0 4px 20px rgba(245,166,35,0.32); }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--white); border: 1px solid var(--white-15); }
.btn-secondary:hover { border-color: var(--orange); color: var(--orange-light); transform: translateY(-2px); }

/* SECTIONS */
.section { padding: 80px 0; border-top: 1px solid var(--white-08); }
.section-head { max-width: 700px; }
.section-head.center { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -0.01em; line-height: 1.18; color: var(--white); margin-bottom: 18px; }
.section-body { font-size: 0.9rem; color: var(--white-70); line-height: 1.8; margin-bottom: 44px; }
.section-head.center .section-body { margin-left: auto; margin-right: auto; }

/* LIGHT SECTION VARIANT */
.section-light { background: var(--off); border-top: 1px solid var(--ink-border); color: var(--ink); }
.section-light .section-title { color: var(--ink); }
.section-light .section-body { color: var(--ink-70); }
.section-light .section-eyebrow { color: var(--orange-dark); }

/* SERVICE PILLARS — featured row */
.pillars-featured { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 768px) { .pillars-featured { grid-template-columns: 1fr; } }

.card-featured {
  background: var(--card-bg); backdrop-filter: blur(10px); border: 1px solid var(--card-border);
  border-left: 3px solid var(--orange); border-radius: 12px; padding: 36px;
  opacity: 0; transform: translateY(28px); transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s;
}
.card-featured.visible { opacity: 1; transform: translateY(0); }
.card-featured:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.card-featured .card-icon { width: 42px; height: 42px; margin-bottom: 18px; }
.card-featured .card-icon svg { width: 42px; height: 42px; }
.card-featured .card-title { font-size: 1.25rem; margin-bottom: 12px; }
.card-featured .card-body { font-size: 0.85rem; margin-bottom: 20px; }

/* CARDS */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.card {
  background: var(--card-bg); backdrop-filter: blur(10px); border: 1px solid var(--card-border);
  border-left: 3px solid var(--orange); border-radius: 10px; padding: 26px;
  opacity: 0; transform: translateY(28px); transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s;
}
.card.visible { opacity: 1; transform: translateY(0); }
.card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.3); }

.card-icon { width: 34px; height: 34px; margin-bottom: 14px; display: block; color: var(--orange); }
.card-icon svg { width: 34px; height: 34px; fill: none; stroke: var(--orange); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.card-title { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.card-body { font-size: 0.8rem; color: var(--white-70); line-height: 1.65; margin-bottom: 14px; }
.card-link {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--orange-light); text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
}
.card-link:hover { color: var(--orange); }
.card-link svg { width: 13px; height: 13px; }

/* Light-section overrides for cards */
.section-light .card-featured, .section-light .card {
  background: var(--white); border: 1px solid var(--ink-border); border-left: 3px solid var(--orange);
  box-shadow: 0 1px 3px rgba(14,32,64,0.05);
}
.section-light .card-featured:hover, .section-light .card:hover { box-shadow: 0 10px 28px rgba(14,32,64,0.10); }
.section-light .card-title { color: var(--ink); }
.section-light .card-body { color: var(--ink-70); }
.section-light .card-link { color: var(--orange-dark); }
.section-light .card-link:hover { color: var(--orange); }

/* COMPARISON */
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 700px) { .comparison-grid { grid-template-columns: 1fr; } }
.compare-col { background: var(--card-bg); backdrop-filter: blur(10px); border: 1px solid var(--card-border); border-radius: 10px; padding: 30px; opacity: 0; transform: translateY(28px); transition: opacity 0.5s ease, transform 0.5s ease; }
.compare-col.visible { opacity: 1; transform: translateY(0); }
.compare-col.oc-tech { border-left: 3px solid var(--orange); }
.compare-col.competitor { border-left: 3px solid rgba(255,255,255,0.12); }
.compare-header { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--white-08); }
.compare-header.orange { color: var(--orange); }
.compare-header.muted { color: var(--white-40); }
.compare-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.83rem; color: var(--white-70); line-height: 1.55; }
.compare-item.dim { color: var(--white-40); }
.check { color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.cross { color: rgba(255,255,255,0.2); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* PHASES */
.phases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 760px) { .phases { grid-template-columns: 1fr; } }
.phase-card { background: var(--card-bg); border: 1px solid var(--card-border); border-top: 3px solid var(--orange); border-radius: 10px; padding: 28px; opacity: 0; transform: translateY(28px); transition: opacity 0.5s ease, transform 0.5s ease; }
.phase-card.visible { opacity: 1; transform: translateY(0); }
.phase-num { font-size: 2.1rem; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 6px; }
.phase-days { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white-40); margin-bottom: 14px; }
.phase-title { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.phase-body { font-size: 0.8rem; color: var(--white-70); line-height: 1.65; }

.section-light .phase-card { background: var(--white); border-color: var(--ink-border); border-top: 3px solid var(--orange); box-shadow: 0 1px 3px rgba(14,32,64,0.05); }
.section-light .phase-days { color: var(--ink-40); }
.section-light .phase-title { color: var(--ink); }
.section-light .phase-body { color: var(--ink-70); }

/* INDUSTRIES TAGS */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.tag { background: rgba(245,166,35,0.08); border: 1px solid rgba(245,166,35,0.25); border-radius: 6px; padding: 9px 16px; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.03em; color: var(--orange-light); }

/* SPOTLIGHT / TESTIMONIALS */
.spotlight-card { background: var(--card-bg); backdrop-filter: blur(10px); border: 1px solid var(--card-border); border-left: 3px solid var(--orange); border-radius: 10px; padding: 32px; opacity: 0; transform: translateY(28px); transition: opacity 0.5s ease, transform 0.5s ease; }
.spotlight-card.visible { opacity: 1; transform: translateY(0); }
.spotlight-card blockquote { font-size: 1.05rem; font-weight: 500; font-style: italic; color: var(--white-90); line-height: 1.65; margin-bottom: 18px; }
.spotlight-card cite { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; color: var(--orange); text-transform: uppercase; font-style: normal; display: block; }
.spotlight-card .cite-sub { font-size: 0.72rem; color: var(--white-40); font-style: normal; margin-top: 2px; }

.section-light .spotlight-card { background: var(--white); border-color: var(--ink-border); box-shadow: 0 1px 3px rgba(14,32,64,0.05); }
.section-light .spotlight-card blockquote { color: var(--ink); }
.section-light .spotlight-card cite { color: var(--orange-dark); }
.section-light .spotlight-card .cite-sub { color: var(--ink-40); }

.placeholder-flag { display: inline-block; margin-top: 18px; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white-40); border: 1px dashed var(--white-15); border-radius: 6px; padding: 6px 12px; }

/* CTA */
.cta-section { padding: 88px 0; border-top: 1px solid var(--white-08); text-align: center; }
.cta-section h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); font-weight: 800; letter-spacing: -0.01em; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.cta-section h2 em { font-style: normal; font-weight: 900; color: var(--orange-light); }
.cta-section p { font-size: 0.9rem; color: var(--white-70); max-width: 520px; margin: 0 auto 36px; line-height: 1.78; }
.cta-section .co-managed-note { margin-top: 24px; font-size: 0.78rem; color: var(--white-40); }
.cta-section .co-managed-note a { color: var(--orange-light); font-weight: 700; text-decoration: none; }

/* FOOTER */
footer { position: relative; z-index: 1; border-top: 1px solid var(--white-08); padding: 56px 48px 32px; }
.footer-top { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand-block { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { height: 24px; width: auto; }
.footer-logo span { font-size: 1.0rem; font-weight: 700; color: var(--white); }
.footer-logo .oc { color: var(--orange); }
.footer-tagline { font-size: 0.78rem; color: var(--white-40); line-height: 1.6; max-width: 240px; }
.footer-credentials { font-size: 0.70rem; color: var(--white-40); line-height: 1.7; max-width: 260px; margin-top: 4px; }

.footer-col-title { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white-40); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a, .footer-col span { font-size: 0.78rem; color: var(--white-70); text-decoration: none; line-height: 1.5; }
.footer-col a:hover { color: var(--orange-light); }

.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--white-08); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { font-size: 0.7rem; color: var(--white-40); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { font-size: 0.7rem; color: var(--white-40); text-decoration: none; }
.footer-bottom-links a:hover { color: var(--orange-light); }

/* RESPONSIVE NAV */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid var(--white-15); border-radius: 6px; background: transparent; color: var(--white); cursor: pointer; }
  nav { padding: 16px 24px; }
  .main-content { padding: 0 24px; }
  footer { padding: 40px 24px 24px; }
}
@media print { #progress-bar, .cursor-dot, .cursor-ring { display: none; } }

/* ============================ V4 ADDITIONS ============================ */

/* Full-bleed fix for light sections inside the 1200px wrapper */
.section-light {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50% + 48px);
  padding-right: calc(50vw - 50% + 48px);
}
@media (max-width: 900px) {
  .section-light { padding-left: calc(50vw - 50% + 24px); padding-right: calc(50vw - 50% + 24px); }
}

/* Announcement */
.announce { position: relative; z-index: 101; background: linear-gradient(90deg, var(--navy), var(--blue)); }
.announce-inner { max-width: 1200px; margin: 0 auto; padding: 10px 48px; display: flex; align-items: center;
  justify-content: center; gap: 6px 14px; flex-wrap: wrap; text-align: center; font-size: 0.76rem;
  font-weight: 600; color: var(--white-90); line-height: 1.5; }
.announce-inner a { margin-left: 6px; color: var(--white); font-weight: 800; text-decoration: underline;
  text-underline-offset: 3px; white-space: nowrap; }
.announce-inner a:hover { color: var(--orange-light); }

/* Hero — tightened */
.hero { padding: 64px 0 56px; }
.hero-sub { margin-bottom: 34px; }

/* Partner marquee */
.marquee { overflow: hidden; max-width: 100vw; border-top: 1px solid var(--white-08); border-bottom: 1px solid var(--white-08);
  padding: 22px 0; position: relative; }
.marquee-label { text-align: center; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--white-40); margin-bottom: 18px; }
.marquee-track { display: flex; gap: 52px; width: max-content; animation: slide 34s linear infinite; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-size: 0.86rem; font-weight: 700; letter-spacing: 0.04em; color: var(--white-40);
  white-space: nowrap; display: flex; align-items: center; gap: 9px; }
.marquee-item::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--orange); opacity: 0.55; }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* Tabs */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.tab-btn { font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 11px 18px; border-radius: 7px; cursor: pointer;
  background: transparent; border: 1px solid var(--white-15); color: var(--white-70); transition: all 0.18s; }
.tab-btn:hover { border-color: var(--orange); color: var(--white); }
.tab-btn[aria-selected="true"] { background: var(--orange); border-color: var(--orange); color: var(--navy-deep); }
.section-light .tab-btn { border-color: var(--ink-border); color: var(--ink-70); }
.section-light .tab-btn:hover { border-color: var(--orange); color: var(--ink); }
.section-light .tab-btn[aria-selected="true"] { background: var(--orange); border-color: var(--orange); color: var(--navy-deep); }

.tab-pane { display: none; }
.tab-pane.active { display: block; animation: fade 0.3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* Split: copy left, visual right */
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .split-2 { grid-template-columns: 1fr; gap: 32px; } }
.split-2 h3 { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.split-2 > div > p { font-size: 0.87rem; color: var(--white-70); line-height: 1.78; margin-bottom: 20px; }
.section-light .split-2 h3 { color: var(--ink); }
.section-light .split-2 > div > p { color: var(--ink-70); }

.feat-list { list-style: none; }
.feat-list li { display: flex; gap: 11px; align-items: flex-start; padding: 9px 0;
  font-size: 0.83rem; color: var(--white-70); line-height: 1.6; border-bottom: 1px solid var(--white-03); }
.feat-list li:last-child { border-bottom: none; }
.feat-list .ck { color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.section-light .feat-list li { color: var(--ink-70); border-bottom-color: var(--ink-border); }

/* Mock UI panel (stands in for a product screenshot) */
.ui-panel { background: rgba(14,32,64,0.92); border: 1px solid var(--card-border); border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.38); overflow: hidden; }
.ui-bar { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 18px; border-bottom: 1px solid var(--white-08); background: rgba(27,58,107,0.4); }
.ui-title { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase; color: var(--white-70); }
.ui-pill { font-size: 0.58rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px; }
.ui-pill.ok { color: #7FE0A8; background: rgba(78,203,128,0.12); border: 1px solid rgba(78,203,128,0.3); }
.ui-pill.warn { color: var(--orange-light); background: rgba(245,166,35,0.12); border: 1px solid rgba(245,166,35,0.3); }
.ui-body { padding: 8px 18px 16px; }
.ui-row { display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 11px 0; border-bottom: 1px solid var(--white-03); font-size: 0.78rem; color: var(--white-70); }
.ui-row:last-child { border-bottom: none; }
.ui-val { font-size: 0.64rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--blue); flex-shrink: 0; }
.ui-val.good { color: #7FE0A8; }
.ui-val.flag { color: var(--orange-light); }
.ui-note { padding: 13px 18px; border-top: 1px solid var(--white-08); background: rgba(27,58,107,0.25);
  font-size: 0.7rem; color: var(--white-40); line-height: 1.55; }
.ui-meter { height: 6px; border-radius: 4px; background: var(--white-08); overflow: hidden; margin-top: 8px; }
.ui-meter span { display: block; height: 100%; background: linear-gradient(90deg, var(--orange), var(--orange-light)); }
.ui-big { display: flex; align-items: baseline; gap: 10px; padding: 16px 18px 4px; }
.ui-big b { font-size: 2.3rem; font-weight: 800; color: var(--orange); line-height: 1; letter-spacing: -0.02em; }
.ui-big span { font-size: 0.72rem; color: var(--white-40); font-weight: 600; }

/* Outcome counters */
.outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px) { .outcomes { grid-template-columns: 1fr; } }
.outcome { background: var(--card-bg); border: 1px solid var(--card-border); border-top: 3px solid var(--orange);
  border-radius: 10px; padding: 30px 26px; }
.section-light .outcome { background: var(--white); border-color: var(--ink-border); border-top: 3px solid var(--orange); }
.outcome-num { font-size: 2.6rem; font-weight: 800; color: var(--orange); line-height: 1; letter-spacing: -0.03em; }
.outcome-title { font-size: 0.95rem; font-weight: 700; color: var(--white); margin: 12px 0 8px; line-height: 1.4; }
.outcome-body { font-size: 0.79rem; color: var(--white-70); line-height: 1.65; }
.outcome-src { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--white-08);
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white-40); }
.section-light .outcome-title { color: var(--ink); }
.section-light .outcome-body { color: var(--ink-70); }
.section-light .outcome-src { color: var(--ink-40); border-top-color: var(--ink-border); }

/* Reviews row */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 900px) { .reviews { grid-template-columns: 1fr; } }
.rev { background: var(--white); border: 1px solid var(--ink-border); border-left: 3px solid var(--orange);
  border-radius: 10px; padding: 26px; display: flex; flex-direction: column; }
.rev-stars { color: var(--orange); letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 12px; }
.rev p { font-size: 0.84rem; color: var(--ink-70); line-height: 1.7; }
.rev cite { margin-top: auto; padding-top: 16px; font-style: normal; font-size: 0.74rem;
  font-weight: 700; color: var(--ink); }
.rev cite span { display: block; font-weight: 600; color: var(--ink-40); font-size: 0.7rem; margin-top: 2px; }

/* FAQ */
.faq { border-top: 1px solid var(--white-08); }
.faq details { border-bottom: 1px solid var(--white-08); padding: 18px 0; }
.faq summary { cursor: pointer; list-style: none; display: flex; align-items: flex-start;
  justify-content: space-between; gap: 20px; font-size: 0.92rem; font-weight: 700; color: var(--white); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--orange); font-size: 1.3rem; font-weight: 400; line-height: 1; flex-shrink: 0; }
.faq details[open] summary::after { content: '\2013'; }
.faq details p { margin-top: 12px; font-size: 0.83rem; color: var(--white-70); line-height: 1.75; max-width: 76ch; }

@media (max-width: 900px) { .announce-inner { padding: 10px 24px; } }

.stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .stack { grid-template-columns: 1fr; } }
.stack-card { background: var(--card-bg); border: 1px solid var(--card-border); border-left: 3px solid var(--orange);
  border-radius: 10px; padding: 24px; }
.section-light .stack-card { background: var(--white); border-color: var(--ink-border); border-left: 3px solid var(--orange); }
.stack-name { font-size: 1rem; font-weight: 800; color: var(--white); letter-spacing: -0.01em; }
.stack-role { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); margin: 5px 0 11px; }
.stack-card p { font-size: 0.8rem; color: var(--white-70); line-height: 1.7; }
.section-light .stack-name { color: var(--ink); }
.section-light .stack-card p { color: var(--ink-70); }
.ind-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
@media (max-width: 940px) { .ind-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ind-cols { grid-template-columns: 1fr; } }
.ind-col h4 { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px; padding-bottom: 9px; border-bottom: 1px solid var(--white-08); }
.ind-col ul { list-style: none; }
.ind-col li { font-size: 0.8rem; color: var(--white-70); padding: 6px 0; line-height: 1.5; }




/* ===== INTERIOR PAGE ADDITIONS ===== */
.page-hero { padding: 54px 0 46px; position: relative; overflow: hidden; }
.page-hero > *:not(.orb) { position: relative; z-index: 1; }
.crumb { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; color: var(--white-40); margin-bottom: 18px; }
.crumb a { color: var(--white-40); text-decoration: none; }
.crumb a:hover { color: var(--orange-light); }
.crumb span { margin: 0 7px; opacity: 0.5; }
.page-hero h1 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); font-weight: 800; letter-spacing: -0.01em;
  line-height: 1.12; color: var(--white); margin-bottom: 18px; max-width: 20ch; }
.page-hero h1 em { font-style: normal; font-weight: 900; color: var(--orange-light); }
.page-hero .lede { font-size: 0.95rem; color: var(--white-70); line-height: 1.8; max-width: 62ch; }

/* Incident timeline */
.tl { border-left: 2px solid rgba(74,127,181,0.28); margin-left: 8px; padding-left: 26px; }
.tl-item { position: relative; padding: 0 0 26px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ''; position: absolute; left: -33px; top: 4px; width: 11px; height: 11px;
  border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(245,166,35,0.14); }
.tl-time { font-size: 0.64rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 5px; }
.tl-item h4 { font-size: 0.97rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.tl-item p { font-size: 0.83rem; color: var(--white-70); line-height: 1.7; }
.section-light .tl { border-left-color: var(--ink-border); }
.section-light .tl-item h4 { color: var(--ink); }
.section-light .tl-item p { color: var(--ink-70); }

/* Numbered / lettered detail blocks */
.blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 820px) { .blocks { grid-template-columns: 1fr; } }
.block { background: var(--card-bg); border: 1px solid var(--card-border); border-left: 3px solid var(--orange);
  border-radius: 10px; padding: 26px; }
.section-light .block { background: var(--white); border-color: var(--ink-border); border-left: 3px solid var(--orange); }
.block h3 { font-size: 1.02rem; font-weight: 700; color: var(--white); margin-bottom: 9px; }
.block p { font-size: 0.83rem; color: var(--white-70); line-height: 1.7; }
.section-light .block h3 { color: var(--ink); }
.section-light .block p { color: var(--ink-70); }

/* Honest-boundaries callout */
.note-box { background: rgba(74,127,181,0.08); border: 1px solid rgba(74,127,181,0.18);
  border-radius: 10px; padding: 24px 28px; }
.note-box h3 { font-size: 0.98rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.note-box p { font-size: 0.83rem; color: var(--white-70); line-height: 1.75; }
.note-box p + p { margin-top: 10px; }
.section-light .note-box { background: rgba(74,127,181,0.06); border-color: rgba(14,32,64,0.10); }
.section-light .note-box h3 { color: var(--ink); }
.section-light .note-box p { color: var(--ink-70); }

/* Cross-links */
.xlinks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 820px) { .xlinks { grid-template-columns: 1fr; } }
.xlink { display: block; text-decoration: none; background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: 10px; padding: 22px; transition: border-color 0.2s, transform 0.2s; }
.xlink:hover { border-color: var(--orange); transform: translateY(-2px); }
.xlink strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.xlink span { display: block; font-size: 0.78rem; color: var(--white-70); line-height: 1.6; }
.section-light .xlink { background: var(--white); border-color: var(--ink-border); }
.section-light .xlink strong { color: var(--ink); }
.section-light .xlink span { color: var(--ink-70); }

/* FAQ */
.faq { border-top: 1px solid var(--white-08); }
.faq details { border-bottom: 1px solid var(--white-08); padding: 18px 0; }
.faq summary { cursor: pointer; list-style: none; display: flex; align-items: flex-start;
  justify-content: space-between; gap: 20px; font-size: 0.92rem; font-weight: 700; color: var(--white); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--orange); font-size: 1.3rem; font-weight: 400; line-height: 1; flex-shrink: 0; }
.faq details[open] summary::after { content: '\\2013'; }
.faq details p { margin-top: 12px; font-size: 0.83rem; color: var(--white-70); line-height: 1.75; max-width: 76ch; }
.section-light .faq { border-top-color: var(--ink-border); }
.section-light .faq details { border-bottom-color: var(--ink-border); }
.section-light .faq summary { color: var(--ink); }
.section-light .faq details p { color: var(--ink-70); }

/* Fill marker for real content still to come */
.fill { display: block; margin-top: 14px; padding: 14px 16px; border: 1px dashed rgba(245,166,35,0.4);
  border-radius: 8px; font-size: 0.76rem; color: var(--white-40); line-height: 1.65; }
.section-light .fill { color: var(--ink-40); border-color: rgba(245,166,35,0.45); }


/* ===== SERVICES HUB ===== */
.svc-row { display: grid; grid-template-columns: 200px 1fr 250px; gap: 34px; padding: 32px 0;
  border-bottom: 1px solid var(--white-08); align-items: start; }
@media (max-width: 940px) { .svc-row { grid-template-columns: 1fr; gap: 14px; } }
.svc-row:first-of-type { border-top: 1px solid var(--white-08); }
.svc-label { font-size: 0.66rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange); }
.svc-row h3 { font-size: 1.22rem; font-weight: 700; color: var(--white); margin: 6px 0 10px; }
.svc-row p { font-size: 0.85rem; color: var(--white-70); line-height: 1.75; }
.svc-inc { list-style: none; }
.svc-inc li { font-size: 0.76rem; color: var(--white-40); padding: 5px 0 5px 15px; position: relative; line-height: 1.5; }
.svc-inc li::before { content: ''; position: absolute; left: 0; top: 12px; width: 5px; height: 5px;
  border-radius: 50%; background: var(--orange); opacity: 0.6; }
.section-light .svc-row { border-bottom-color: var(--ink-border); }
.section-light .svc-row:first-of-type { border-top-color: var(--ink-border); }
.section-light .svc-row h3 { color: var(--ink); }
.section-light .svc-row p { color: var(--ink-70); }
.section-light .svc-inc li { color: var(--ink-40); }

/* Stack grid */
@media (max-width: 900px) { .stack { grid-template-columns: 1fr; } }
  border-radius: 10px; padding: 24px; }
.section-light .stack-card { background: var(--white); border-color: var(--ink-border); border-left: 3px solid var(--orange); }
  color: var(--orange); margin: 5px 0 11px; }
.stack-card p { font-size: 0.8rem; color: var(--white-70); line-height: 1.7; }
.section-light .stack-name { color: var(--ink); }
.section-light .stack-card p { color: var(--ink-70); }

/* Industry columns */
@media (max-width: 940px) { .ind-cols { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ind-cols { grid-template-columns: 1fr; } }
  color: var(--orange); margin-bottom: 12px; padding-bottom: 9px; border-bottom: 1px solid var(--white-08); }
.section-light .ind-col h4 { border-bottom-color: var(--ink-border); color: var(--orange-dark); }
.section-light .ind-col li { color: var(--ink-70); }


/* ===== SLA TABLE ===== */
.sla-wrap { overflow-x: auto; }
.sla-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.sla-table th, .sla-table td { text-align: left; padding: 14px 16px; font-size: 0.83rem; line-height: 1.5; }
.sla-table thead th { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--white-40); border-bottom: 2px solid var(--white-08); padding-bottom: 11px; }
.sla-table tbody tr { border-bottom: 1px solid var(--white-08); }
.sla-table tbody tr:last-child { border-bottom: none; }
.sla-table td { color: var(--white-70); }
.sla-sev { font-weight: 800; color: var(--white); }
.sla-target { font-weight: 800; color: var(--orange); white-space: nowrap; }
.sla-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 9px; vertical-align: 1px; }
.sev-1 { background: #E04B3C; } .sev-2 { background: #F5A623; }
.sev-3 { background: #4A7FB5; } .sev-4 { background: rgba(255,255,255,0.28); }
.section-light .sla-table thead th { color: var(--ink-40); border-bottom-color: var(--ink-border); }
.section-light .sla-table tbody tr { border-bottom-color: var(--ink-border); }
.section-light .sla-table td { color: var(--ink-70); }
.section-light .sla-sev { color: var(--ink); }
