/* ============================================================
   CoreWave CBA — Landing page
   Brand: Pintop Technologies / CoreWave
   ============================================================ */

@font-face {
  font-family: "Proxima";
  src: url("assets/fonts/ProximaNovaWide-Regular.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Proxima";
  src: url("assets/fonts/ProximaNovaWide-Medium.ttf");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Proxima";
  src: url("assets/fonts/ProximaNovaWide-Bold.ttf");
  font-weight: 700;
  font-display: swap;
}

:root {
  --navy: #101e42;
  --navy-deep: #0b1430;
  --navy-2: #16264e;
  --ink: #17213b;
  --blue: #0833ab;
  --blue-bright: #2f5cf0;
  --blue-soft: #eaf0ff;
  --red: #fd1d1d;
  --red-deep: #d60f0f;
  --amber: #fcb045;
  --green: #138570;
  --teal: #359d9e;
  --muted: #61697b;
  --muted-light: #a7b0c6;
  --line: #e3e8f1;
  --line-dark: rgba(127, 157, 242, 0.18);
  --pale: #f6f7fa;
  --pale-2: #eef1f7;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(16, 30, 66, 0.06), 0 4px 14px rgba(16, 30, 66, 0.06);
  --shadow-md: 0 6px 20px rgba(16, 30, 66, 0.10), 0 2px 6px rgba(16, 30, 66, 0.06);
  --shadow-lg: 0 24px 60px rgba(11, 20, 48, 0.35);
  --wrap: 1320px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: "Proxima", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.16; letter-spacing: -0.02em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }
figure { margin: 0; }
button { font: inherit; cursor: pointer; background: none; border: 0; padding: 0; color: inherit; }
summary { cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }

::selection { background: var(--blue); color: #fff; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: #fff;
  color: var(--ink);
  font-weight: 500;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: 0 0 10px 0;
  box-shadow: var(--shadow-md);
}
.skip:focus { left: 0; }

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

[hidden] { display: none !important; }

.wrap { width: min(var(--wrap), calc(100% - 112px)); margin-inline: auto; }
.section { padding-block: 112px; }

/* ---------- shared typography ---------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--blue);
  margin: 0 0 22px;
  text-transform: uppercase;
}
.eyebrow.light { color: #9db4ff; }
.brand-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(253, 29, 29, 0.14);
  flex-shrink: 0;
}

h2 {
  font-size: clamp(34px, 3.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}
.muted-heading { color: #788196; }
.blue-text { color: var(--blue); }
.light-blue { color: #6f95ff; }

.section-heading { margin-bottom: 58px; }
.section-heading.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
}
.section-heading.center { text-align: center; max-width: 820px; margin-inline: auto; }
.section-heading.center .eyebrow { justify-content: center; }
.section-intro { max-width: 430px; font-size: 16px; color: var(--muted); }
.section-intro p { margin-bottom: 12px; }
.section-heading.center .section-intro { margin-inline: auto; max-width: 560px; }
.dark .section-intro, .section-intro.on-dark { color: var(--muted-light); }

/* ---------- buttons ---------- */
.button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--blue);
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.2px;
  padding: 16px 24px;
  border-radius: 999px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 22px rgba(8, 51, 171, 0.28);
}
.button:hover { background: var(--blue-bright); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(8, 51, 171, 0.34); }
.button .fas { font-size: 11px; }
.button.warm { background: var(--amber); color: #241a04; box-shadow: 0 8px 22px rgba(252, 176, 69, 0.38); }
.button.warm:hover { background: #ffc066; box-shadow: 0 12px 26px rgba(252, 176, 69, 0.46); }
.button.compact { font-size: 12px; padding: 13px 19px; box-shadow: none; }

.underlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  border-bottom: 1px solid rgba(8, 51, 171, 0.35);
  padding-bottom: 3px;
  transition: color 0.25s ease, border-color 0.25s ease, gap 0.25s ease;
}
.underlink:hover { color: var(--blue-bright); border-color: var(--blue-bright); gap: 14px; }
.underlink .fas { font-size: 10px; }
.underlink.on-dark { color: #b9c9ff; border-color: rgba(185, 201, 255, 0.4); }
.underlink.on-dark:hover { color: #fff; border-color: #fff; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  transition: color 0.25s ease, gap 0.25s ease;
}
.text-link:hover { color: var(--blue-bright); gap: 14px; }
.text-link .fas { font-size: 11px; }

/* ---------- announcement + header ---------- */
.announcement {
  background: var(--navy-deep);
  color: #c3cdea;
  font-size: 12px;
  border-bottom: 1px solid var(--line-dark);
}
.announcement .wrap {
  min-height: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.announcement a { color: #fff; font-weight: 500; }
.announcement a:hover { color: var(--amber); }
.announcement .fas { font-size: 10px; margin-left: 10px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 10px 30px rgba(16, 30, 66, 0.08); }

.nav { min-height: 84px; display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand img { width: 30px; height: 28px; object-fit: contain; }
.brand-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  display: inline-flex;
  align-items: baseline;
}
.brand-name em {
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: #fff;
  background: var(--red-deep);
  padding: 3px 8px 4px;
  border-radius: 6px;
  margin-left: 6px;
  line-height: 1;
  transform: translateY(-2px);
}
.brand.light .brand-name { color: #fff; }

.nav nav { display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 500; color: #3d465f; }
.nav nav > a:not(.button) { padding-block: 10px; position: relative; transition: color 0.25s ease; }
.nav nav > a:not(.button):after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 4px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: right 0.3s ease;
}
.nav nav > a:not(.button):hover { color: var(--navy); }
.nav nav > a:not(.button):hover:after { right: 0; }

.menu-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 17px;
  color: var(--navy);
  background: #fff;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 640px at 82% -10%, rgba(47, 92, 240, 0.22), transparent 60%),
    radial-gradient(900px 520px at -8% 108%, rgba(253, 29, 29, 0.13), transparent 55%),
    linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 58%, #132247 100%);
  color: #fff;
  overflow: hidden;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.55; pointer-events: none; }
.glow-blue { width: 420px; height: 420px; background: rgba(47, 92, 240, 0.28); top: -140px; right: 8%; }
.glow-red { width: 300px; height: 300px; background: rgba(253, 29, 29, 0.18); bottom: -120px; left: -60px; }

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 64px;
  align-items: center;
  padding-block: 84px 60px;
}
.hero-copy .eyebrow { color: #9db4ff; }
.hero h1 {
  font-size: clamp(44px, 5.1vw, 74px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 26px;
}
.hero-accent { color: var(--amber); }
.hero-intro { max-width: 560px; font-size: 17px; line-height: 1.8; color: #b9c5e2; margin-bottom: 32px; }
.hero .actions { display: flex; align-items: center; gap: 26px; margin-bottom: 36px; flex-wrap: wrap; }
.hero .underlink { color: #b9c9ff; border-color: rgba(185, 201, 255, 0.4); }
.hero .underlink:hover { color: #fff; border-color: #fff; }

.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-tags li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #d4ddf4;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  padding: 9px 16px;
  backdrop-filter: blur(6px);
}
.hero-tags li i { color: var(--amber); font-size: 11px; }

.hero-visual { position: relative; padding-top: 14px; }
.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-photo img { width: 100%; height: 480px; object-fit: cover; object-position: 55% center; }
.hero-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(11, 20, 48, 0) 40%, rgba(11, 20, 48, 0.55) 100%);
}
.place-label {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  background: rgba(11, 20, 48, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 14px;
  border-radius: 999px;
}
.place-label i { color: var(--amber); }

.hero-dash {
  position: absolute;
  left: -74px;
  bottom: -42px;
  width: min(430px, 92%);
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(16, 30, 66, 0.12);
}
.hero-dash img { width: 100%; height: auto; }
.hero-dash:before {
  content: "";
  display: block;
  height: 26px;
  background: #0d1c3f;
}
.hero-dash:after {
  content: "";
  position: absolute;
  top: 9px;
  left: 14px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 13px 0 0 var(--amber), 26px 0 0 var(--green);
}

.hero-band {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px 40px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line-dark);
  padding-block: 24px;
}
.band-lede {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 13px;
  font-weight: 500;
  color: #c6d2f2;
}
.band-lede i { color: var(--amber); font-size: 13px; }
.band-audience {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #9db4ff;
}

/* ---------- why ---------- */
.why { background: #fff; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 8px; }
.why-point {
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-point:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.point-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 20px;
  margin-bottom: 20px;
}
.why-point:nth-child(2) .point-icon { background: #fdecec; color: var(--red); }
.why-point h3 { font-size: 22px; margin-bottom: 10px; }
.why-point p { color: var(--muted); font-size: 15px; margin-bottom: 0; }

.why-pillars {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.pillar {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #c9d4ee; }
.pillar-num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 34px;
  font-weight: 700;
  color: #eef1f7;
  letter-spacing: -0.03em;
}
.pillar i { font-size: 21px; color: var(--blue); margin-bottom: 16px; }
.pillar:nth-child(2) i { color: var(--green); }
.pillar:nth-child(3) i { color: var(--amber); }
.pillar:nth-child(4) i { color: var(--red); }
.pillar h3 { font-size: 16px; margin-bottom: 6px; }
.pillar p { font-size: 13px; color: var(--muted); margin-bottom: 0; }

/* ---------- multi-tenant ---------- */
.tenant { background: var(--pale); border-block: 1px solid var(--line); }
.tenant-layout { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: center; }
.tenant-intro { color: var(--muted); max-width: 520px; margin-bottom: 34px; }

.check-list { display: grid; gap: 20px; }
.check-list li { display: flex; gap: 16px; align-items: flex-start; }
.check-list li > i {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #e7f5f2;
  color: var(--green);
  font-size: 11px;
  margin-top: 4px;
}
.check-list strong { font-size: 15px; letter-spacing: -0.01em; }
.check-list p { font-size: 13.5px; color: var(--muted); margin: 3px 0 0; }

.tenant-visual { position: relative; padding: 16px; }
.tenant-diagram {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 34px 30px 26px;
  position: relative;
}
.tenant-diagram:before {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1px dashed #c6cfe4;
  border-radius: 26px;
  z-index: -1;
}
.platform-core {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: linear-gradient(150deg, var(--navy), #1c2f5e);
  color: #fff;
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 26px;
  position: relative;
}
.platform-core i { font-size: 20px; color: var(--amber); margin-bottom: 6px; }
.platform-core strong { font-size: 15px; }
.platform-core span { font-size: 11.5px; color: #a9b8e0; }

.tenant-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.tenant-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--pale);
  padding: 16px 14px 14px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tenant-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.tenant-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.t1 .tenant-badge { background: #eaf0ff; color: var(--blue); }
.t2 .tenant-badge { background: #e7f5f2; color: var(--green); }
.t3 .tenant-badge { background: #fdf1df; color: #a86a00; }
.tenant-card > div { display: flex; justify-content: center; gap: 10px; color: #8a93ab; font-size: 13px; margin-bottom: 8px; }
.tenant-card small { font-size: 10.5px; color: var(--muted); }
.diagram-note {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--muted);
  margin: 22px 0 0;
}

/* ---------- operational views ---------- */
.ops {
  background:
    radial-gradient(1100px 500px at 100% 0%, rgba(47, 92, 240, 0.16), transparent 60%),
    linear-gradient(160deg, var(--navy-deep), var(--navy) 70%);
  color: #fff;
}
.ops .section-heading.center { max-width: 860px; }

.ops-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
  align-items: stretch;
}
.ops-tabs { display: flex; flex-direction: column; gap: 8px; }
.ops-tabs button {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: left;
  padding: 17px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  color: #a9b8e0;
  font-size: 13.5px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.ops-tabs button:hover { background: rgba(255, 255, 255, 0.05); color: #fff; }
.ops-tabs button .op-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #5f739f;
  transition: color 0.3s ease;
  min-width: 24px;
}
.ops-tabs button.active {
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--line-dark);
  color: #fff;
  box-shadow: inset 3px 0 0 var(--amber);
}
.ops-tabs button.active .op-num { color: var(--amber); }

.ops-panels {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(8px);
  min-height: 460px;
}
.op-panel { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; }
.op-copy .eyebrow { color: #9db4ff; margin-bottom: 14px; }
.op-copy h3 { font-size: 30px; margin-bottom: 12px; }
.op-copy > p { color: #b9c5e2; font-size: 14.5px; margin-bottom: 22px; }

.feature-list { display: grid; gap: 10px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: #d7dff2; }
.feature-list li i { color: var(--green); font-size: 12px; margin-top: 5px; }

.op-shot {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(16, 30, 66, 0.12);
  position: relative;
}
.op-shot img { width: 100%; height: auto; display: block; }
.ops-note { margin: 30px 0 0; font-size: 12px; color: #8fa0c9; }

/* ---------- what's inside (capability index) ---------- */
.modules { background: #fff; }
.module-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 13px;
  font-size: 17px;
  color: #fff;
}
.module-icon.blue { background: var(--blue); }
.module-icon.teal { background: var(--teal); }
.module-icon.amber { background: #e8931f; }
.module-icon.green { background: var(--green); }
.module-icon.red { background: var(--red); }
.module-icon.navy { background: var(--navy); }
.cap-heading { align-items: flex-end; }
.cap-heading .text-link { margin-top: 4px; white-space: nowrap; }
.cap-heading .text-link i { transition: transform 0.3s ease; }
.cap-heading .text-link.expanded i { transform: rotate(180deg); }

.cap-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 34px;
}
.cap-stat {
  background: linear-gradient(150deg, var(--navy), #1c2f5e);
  color: #fff;
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cap-stat strong { font-size: 30px; font-weight: 700; letter-spacing: -0.02em; color: var(--amber); }
.cap-stat span { font-size: 11px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: #a9b8e0; }

.cap-index { display: grid; gap: 14px; }
.cap-group {
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.cap-group:hover { border-color: #c9d4ee; }
.cap-group details[open] { background: #fff; border-color: #c9d4ee; box-shadow: var(--shadow-sm); }
.cap-group summary {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
}
.cap-group summary .module-icon { margin-bottom: 0; flex-shrink: 0; width: 44px; height: 44px; font-size: 15px; border-radius: 12px; }
.cap-title { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.cap-title strong { font-size: 16.5px; letter-spacing: -0.01em; }
.cap-title small { font-size: 12.5px; color: var(--muted); }
.cap-count {
  margin-left: auto;
  flex-shrink: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-left: 24px;
  border-left: 1px solid var(--line);
  white-space: nowrap;
  transition: border-color 0.3s ease;
}
.cap-count strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  transition: color 0.3s ease;
}
.cap-count span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
}
.cap-group:hover .cap-count { border-color: #c9d4ee; }
.cap-group:hover .cap-count strong { color: var(--blue); }
.cap-chevron {
  flex-shrink: 0;
  color: #8a93ab;
  font-size: 13px;
  transition: transform 0.3s ease;
}
.cap-group details[open] .cap-chevron { transform: rotate(180deg); color: var(--blue); }
.cap-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 0 26px;
  border-top: 1px dashed var(--line);
  margin: 0 26px 0 90px;
}
@keyframes capIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}
.cap-list li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 12.5px;
  color: var(--ink);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}
.cap-list li:hover { border-color: #b9c7e8; background: #fff; transform: translateY(-1px); }
.cap-list li i { color: var(--green); font-size: 10px; }

.module-foot { margin: 26px 0 0; font-size: 12px; color: var(--muted); }

/* ---------- workflow ---------- */
.flow { background: var(--pale); border-block: 1px solid var(--line); }
.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  counter-reset: step;
  position: relative;
}
.flow-steps:before {
  content: "";
  position: absolute;
  top: 38px;
  left: 9%;
  right: 9%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #c6cfe4 0 8px, transparent 8px 16px);
}
.flow-steps li { position: relative; padding: 0 22px; text-align: center; }
.step-top { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-bottom: 18px; }
.step-top > i {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  color: var(--blue);
  font-size: 22px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.flow-steps li:nth-child(2) .step-top > i { color: var(--teal); }
.flow-steps li:nth-child(3) .step-top > i { color: var(--amber); }
.flow-steps li:nth-child(4) .step-top > i { color: var(--green); }
.flow-steps li:nth-child(5) .step-top > i { color: var(--red); }
.flow-steps li:hover .step-top > i { transform: translateY(-4px); border-color: #c9d4ee; }
.step-top > span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--blue);
  background: #eaf0ff;
  padding: 4px 11px;
  border-radius: 999px;
}
.flow-steps li:nth-child(2) .step-top > span { color: #24706c; background: #e6f4f3; }
.flow-steps li:nth-child(3) .step-top > span { color: #a86a00; background: #fdf1df; }
.flow-steps li:nth-child(4) .step-top > span { color: var(--green); background: #e7f5f2; }
.flow-steps li:nth-child(5) .step-top > span { color: var(--red); background: #fdecec; }
.flow-steps h3 { font-size: 17px; margin-bottom: 8px; }
.flow-steps p { font-size: 13px; color: var(--muted); margin-bottom: 0; }

/* ---------- lifecycle ---------- */
.lifecycle { background: #fff; }
.flow-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.flow-tabs button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 22px;
  transition: all 0.3s ease;
}
.flow-tabs button i { color: var(--blue); font-size: 13px; transition: color 0.3s ease; }
.flow-tabs button:hover { border-color: #c9d4ee; transform: translateY(-1px); }
.flow-tabs button.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  box-shadow: 0 10px 24px rgba(16, 30, 66, 0.24);
}
.flow-tabs button.active i { color: var(--amber); }

.lc-caption { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.lc-caption h3 { font-size: 24px; margin-bottom: 8px; }
.lc-caption p { font-size: 14.5px; color: var(--muted); margin-bottom: 0; }

.lc-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  animation: capIn 0.35s ease;
}
.lc-steps li {
  position: relative;
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.lc-steps li:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: #fff; }
.lc-num {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 24px;
  font-weight: 700;
  color: #757f9b;
  letter-spacing: -0.02em;
}
.lc-steps li > i {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 15px;
  margin-bottom: 14px;
}
.lc-steps li:nth-child(2) > i { background: #e6f4f3; color: var(--teal); }
.lc-steps li:nth-child(3) > i { background: #fdf1df; color: #a86a00; }
.lc-steps li:nth-child(4) > i { background: #e7f5f2; color: var(--green); }
.lc-steps li:nth-child(5) > i { background: #fdecec; color: var(--red); }
.lc-steps li:nth-child(6) > i { background: #eaf0ff; color: var(--blue); }
.lc-steps li:nth-child(7) > i { background: #e6f4f3; color: var(--teal); }
.lc-steps li:nth-child(8) > i { background: #e7f5f2; color: var(--green); }
.lc-steps h4 { font-size: 15.5px; margin-bottom: 6px; }
.lc-steps p { font-size: 12.5px; color: var(--muted); margin-bottom: 0; }

/* ---------- integrations: providers + connectivity ---------- */
.provider-row {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--line-dark);
}
.provider-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: #9db4ff;
  white-space: nowrap;
}
.provider-cloud { display: flex; flex-wrap: wrap; gap: 9px; }
.provider-cloud li {
  font-size: 12px;
  font-weight: 500;
  color: #c3cdea;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  padding: 7px 15px;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.provider-cloud li:hover { border-color: rgba(252, 176, 69, 0.5); color: #fff; background: rgba(252, 176, 69, 0.1); }

.connect-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.connect-panel article {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.connect-panel article:hover { transform: translateY(-4px); border-color: rgba(127, 157, 242, 0.4); }
.connect-panel article > i { color: var(--amber); font-size: 18px; margin-bottom: 14px; }
.connect-panel h3 { font-size: 15px; margin-bottom: 8px; }
.connect-panel p { font-size: 12.5px; color: #a9b8e0; margin-bottom: 0; }

/* ---------- integrations ---------- */
.integrations {
  background:
    radial-gradient(900px 480px at 0% 0%, rgba(47, 92, 240, 0.14), transparent 55%),
    var(--navy-deep);
  color: #fff;
}
.integration-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.integration-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.integration-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.075); border-color: rgba(127, 157, 242, 0.4); }
.int-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(252, 176, 69, 0.14);
  color: var(--amber);
  font-size: 17px;
  margin-bottom: 18px;
}
.integration-card h3 { font-size: 16.5px; margin-bottom: 8px; }
.integration-card p { font-size: 13px; color: #a9b8e0; margin-bottom: 0; }

/* ---------- rollout / implementation ---------- */
.rollout { background: #fff; }
.rollout-layout { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 72px; align-items: start; }
.rollout-copy { position: sticky; top: 130px; }
.rollout-copy > p { color: var(--muted); max-width: 480px; margin-bottom: 28px; }
.rollout-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.rollout-photo img { width: 100%; height: 380px; object-fit: cover; }
.rollout-photo figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(11, 20, 48, 0.78);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px;
  border-radius: 12px;
  padding: 12px 16px;
}
.rollout-photo figcaption i { color: var(--amber); }

.phase-list { display: grid; gap: 0; }
.phase-list li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 24px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.phase-list li:first-child { padding-top: 0; }
.phase-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.phase-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--blue);
  background: var(--blue-soft);
  height: fit-content;
  width: fit-content;
  padding: 6px 13px;
  border-radius: 999px;
  margin-top: 4px;
}
.phase-list h3 { font-size: 18px; margin-bottom: 6px; }
.phase-list p { font-size: 14px; color: var(--muted); margin-bottom: 0; }

/* ---------- industries ---------- */
.industries { background: var(--pale); border-block: 1px solid var(--line); }
.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.industry-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.industry-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #c9d4ee; }
.ind-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 17px;
  margin-bottom: 18px;
  color: #fff;
}
.ind-icon.blue { background: var(--blue); }
.ind-icon.teal { background: var(--teal); }
.ind-icon.amber { background: #e8931f; }
.ind-icon.green { background: var(--green); }
.ind-icon.red { background: var(--red); }
.ind-icon.navy { background: var(--navy); }
.industry-card h3 { font-size: 17px; margin-bottom: 8px; }
.industry-card p { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.industry-card small {
  margin-top: auto;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.industry-card small i { font-size: 10px; transition: transform 0.3s ease; }
.industry-card:hover small i { transform: translateX(4px); }

/* ---------- leadership ---------- */
.leadership { background: #fff; }
.leadership-layout { display: grid; grid-template-columns: 0.78fr 1.22fr; gap: 80px; align-items: center; }
.lead-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.lead-photo img { width: 100%; height: 520px; object-fit: cover; object-position: center top; }
.lead-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(11, 20, 48, 0) 55%, rgba(11, 20, 48, 0.5) 100%);
}
.lead-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(11, 20, 48, 0.78);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 13px 18px;
  color: #fff;
}
.lead-photo figcaption strong { font-size: 13px; }
.lead-photo figcaption span { font-size: 11px; color: #a9b8e0; }

.lead-copy blockquote { margin: 0 0 34px; }
.lead-copy blockquote p {
  font-size: clamp(21px, 2.1vw, 28px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--navy);
  position: relative;
  padding-left: 30px;
}
.lead-copy blockquote p:before {
  content: "“";
  position: absolute;
  left: -6px;
  top: -14px;
  font-size: 74px;
  font-weight: 700;
  color: var(--red);
  opacity: 0.9;
  line-height: 1;
  font-family: Georgia, serif;
}
.lead-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.lead-person { display: flex; flex-direction: column; }
.lead-person strong { font-size: 16px; letter-spacing: -0.01em; }
.lead-person span { font-size: 12.5px; color: var(--muted); }
.lead-cta .button { box-shadow: none; }

.client-quote {
  margin-top: 30px;
  background: var(--pale);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  position: relative;
}
.client-quote > i { color: var(--blue); opacity: 0.35; font-size: 20px; margin-bottom: 10px; }
.client-quote p { font-size: 14px; color: var(--ink); margin-bottom: 10px; }
.client-quote span { font-size: 12.5px; color: var(--muted); }

/* ---------- faq ---------- */
.faq { background: var(--pale); border-top: 1px solid var(--line); }
.faq-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 84px; align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro > p { color: var(--muted); margin-bottom: 26px; }
.faq-list { display: grid; gap: 12px; }
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-list details[open] { border-color: #c9d4ee; box-shadow: var(--shadow-sm); }
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.faq-list summary i { color: var(--blue); font-size: 13px; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-list details[open] summary i { transform: rotate(45deg); }
.faq-list details > p { padding: 0 24px 22px; font-size: 14px; color: var(--muted); margin-bottom: 0; }

/* ---------- cta ---------- */
.cta-section {
  position: relative;
  background:
    radial-gradient(800px 420px at 88% 20%, rgba(252, 176, 69, 0.16), transparent 60%),
    linear-gradient(145deg, var(--blue) 0%, #0a2f9c 45%, var(--navy-deep) 100%);
  color: #fff;
  overflow: hidden;
}
.cta-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 56px;
  align-items: center;
  padding-block: 100px;
}
.cta-copy .eyebrow { color: #ffd79a; }
.cta-copy h2 { font-size: clamp(32px, 3.4vw, 50px); margin-bottom: 20px; }
.cta-copy .hero-accent { color: var(--amber); }
.cta-copy > p { color: #c6d2f2; max-width: 560px; margin-bottom: 0; }
.cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.cta-actions .underlink { color: #dbe4fa; border-color: rgba(219, 228, 250, 0.45); }
.cta-actions .underlink:hover { color: #fff; border-color: #fff; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-deep); color: #b7c3de; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.85fr 0.85fr 1fr;
  gap: 48px;
  padding-block: 72px 56px;
}
.footer-brand p { font-size: 13.5px; max-width: 340px; margin: 18px 0 8px; }
.footer-brand p a { color: #fff; font-weight: 500; }
.footer-brand p a:hover { color: var(--amber); }
.footer-grid h3 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer-grid > div:not(.footer-brand) > a { font-size: 13px; color: #b7c3de; transition: color 0.25s ease; }
.footer-grid > div:not(.footer-brand) > a:hover { color: #fff; }
.footer-grid > div > a .fas { font-size: 10px; margin-left: 8px; }
.footer-grid p { font-size: 13px; margin-bottom: 0; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--line-dark);
  padding-block: 24px;
  font-size: 12.5px;
  color: #8b99bd;
}
.footer-bottom a { color: #c3cdea; }
.footer-bottom a:hover { color: #fff; }
.footer-bottom .fas { font-size: 10px; margin-left: 8px; }

/* ---------- motion ---------- */
html.js .reveal,
html.js .reveal-scale {
  opacity: 0;
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
html.js .reveal { transform: translateY(34px); }
html.js .reveal-scale { transform: translateY(26px) scale(0.965); }
html.js .reveal.in,
html.js .reveal-scale.in {
  opacity: 1;
  transform: none;
}

/* hero load-in sequence */
html.js .hero-copy > * {
  opacity: 0;
  animation: heroRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
html.js .hero-copy .eyebrow { animation-delay: 0.05s; }
html.js .hero-copy h1 { animation-delay: 0.16s; }
html.js .hero-copy .hero-intro { animation-delay: 0.28s; }
html.js .hero-copy .actions { animation-delay: 0.4s; }
html.js .hero-copy .hero-tags { animation-delay: 0.52s; }

html.js .hero-photo {
  opacity: 0;
  animation: heroZoom 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}
html.js .hero-dash {
  opacity: 0;
  animation:
    dashIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.55s forwards,
    dashFloat 7s ease-in-out 2.4s infinite;
}
html.js .hero-band .band-lede { opacity: 0; animation: heroRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards; }
html.js .hero-band .band-audience { opacity: 0; animation: heroRise 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.82s forwards; }

@keyframes heroRise {
  from { opacity: 0; transform: translateY(38px); }
  to { opacity: 1; transform: none; }
}
@keyframes heroZoom {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: none; }
}
@keyframes dashIn {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: none; }
}
@keyframes dashFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ambient hero motion */
@keyframes glowDrift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(34px, -26px, 0) scale(1.1); }
}
.hero .glow-blue { animation: glowDrift 12s ease-in-out infinite; }
.hero .glow-red { animation: glowDrift 15s ease-in-out 2s infinite reverse; }

/* tab panel transitions */
html.js .op-panel,
html.js .lc-panel {
  animation: panelIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
html.js .ops-panels:not(.in) .op-panel { animation: none; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* accordion body + staggered chips */
.cap-body {
  height: 0;
  overflow: hidden;
  transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.cap-group details[open] > .cap-body { height: auto; }
html.js .cap-group details.open .cap-list li {
  animation: chipIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--i, 0) * 16ms);
}
@keyframes chipIn {
  from { opacity: 0; transform: translateY(10px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

/* nav active state */
.nav nav > a.active { color: var(--navy); }
.nav nav > a.active:after { right: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after {
    animation: none !important;
    transition: none !important;
  }
  html.js .reveal, html.js .reveal-scale,
  html.js .hero-copy > *, html.js .hero-photo, html.js .hero-dash,
  html.js .hero-band .band-lede, html.js .hero-band .band-audience {
    opacity: 1 !important;
    transform: none !important;
  }
  .cap-body { height: auto !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 1200px) {
  .wrap { width: calc(100% - 72px); }
  .nav nav { gap: 20px; font-size: 12px; }
  .hero-layout { gap: 44px; }
  .hero-dash { left: -34px; width: 400px; }
  .why-pillars { grid-template-columns: repeat(2, 1fr); }
  .module-grid { grid-template-columns: repeat(3, 1fr); }
  .flow-steps li { padding: 0 12px; }
  .rollout-layout, .leadership-layout, .faq-layout { gap: 48px; }
  .footer-grid { gap: 32px; }
}

@media (max-width: 980px) {
  .wrap { width: calc(100% - 48px); }
  .section { padding-block: 84px; }
  .menu-toggle { display: grid; }
  .nav nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 22px 24px 28px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(16, 30, 66, 0.12);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    font-size: 15px;
  }
  .nav nav.open { display: flex; }
  .nav nav > a:not(.button) { padding: 12px; }
  .nav nav .button { margin-top: 10px; justify-content: center; }
  .announcement span { display: none; }
  .announcement .wrap { justify-content: center; }

  .hero-layout { grid-template-columns: 1fr; gap: 54px; padding-block: 60px 40px; }
  .hero-copy { max-width: 640px; }
  .hero-dash { left: 0; right: 0; margin-inline: auto; bottom: -48px; width: min(480px, 88%); }
  .hero-band { padding-top: 70px; }

  .why-grid { grid-template-columns: 1fr; }
  .why-point { padding: 30px; }
  .tenant-layout { grid-template-columns: 1fr; gap: 48px; }
  .tenant-diagram { max-width: 560px; margin-inline: auto; }

  .ops-layout { grid-template-columns: 1fr; }
  .ops-tabs { flex-direction: row; flex-wrap: wrap; }
  .ops-tabs button { width: auto; flex: 1 1 140px; justify-content: center; padding: 14px; }
  .ops-tabs button.active { box-shadow: inset 0 -3px 0 var(--amber); }
  .op-panel { grid-template-columns: 1fr; gap: 26px; }
  .ops-panels { padding: 28px; }

  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-steps { grid-template-columns: 1fr; gap: 8px; }
  .flow-steps:before { display: none; }
  .flow-steps li { display: grid; grid-template-columns: 88px 1fr; gap: 4px 20px; text-align: left; padding: 16px 0; border-bottom: 1px solid var(--line); align-items: center; }
  .flow-steps li:last-child { border-bottom: 0; }
  .step-top { flex-direction: row; gap: 14px; margin-bottom: 0; grid-row: span 2; justify-content: flex-start; }
  .step-top > i { width: 56px; height: 56px; font-size: 17px; }
  .step-top > span { display: none; }
  .flow-steps h3 { margin-bottom: 2px; }

  .integration-grid, .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .lc-steps { grid-template-columns: repeat(2, 1fr); }
  .connect-panel { grid-template-columns: repeat(2, 1fr); }
  .rollout-layout { grid-template-columns: 1fr; }
  .rollout-copy { position: static; }
  .rollout-photo img { height: 320px; }
  .leadership-layout { grid-template-columns: 1fr; }
  .lead-photo { max-width: 480px; }
  .lead-photo img { height: 460px; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .cta-layout { grid-template-columns: 1fr; gap: 36px; padding-block: 72px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .wrap { width: calc(100% - 40px); }
  .section { padding-block: 68px; }
  .section-heading.split { flex-direction: column; align-items: flex-start; gap: 20px; }
  .section-heading { margin-bottom: 40px; }
  h2 { letter-spacing: -0.02em; }
  .brand-name { font-size: 19px; }

  .hero h1 { font-size: clamp(38px, 11vw, 52px); }
  .hero-intro { font-size: 15.5px; }
  .hero .actions { flex-direction: column; align-items: flex-start; gap: 18px; }
  .hero-photo img { height: 380px; }
  .hero-dash { width: 96%; bottom: -30px; }
  .hero-band { padding-top: 56px; }

  .why-pillars { grid-template-columns: 1fr; }
  .tenant-diagram { padding: 24px 18px 20px; }
  .tenant-row { grid-template-columns: 1fr; }
  .ops-panels { padding: 22px 18px; }
  .op-copy h3 { font-size: 24px; }
  .module-grid { grid-template-columns: 1fr; }
  .cap-stats { grid-template-columns: repeat(2, 1fr); }
  .cap-group summary { gap: 14px; padding: 18px; }
  .cap-group summary .module-icon { width: 40px; height: 40px; }
  .cap-title small { display: none; }
  .cap-count { display: none; }
  .cap-list { margin-left: 0; padding: 16px 18px 20px; }
  .cap-heading { align-items: flex-start; }
  .integration-grid, .industry-grid { grid-template-columns: 1fr; }
  .lc-steps { grid-template-columns: 1fr; }
  .connect-panel { grid-template-columns: 1fr; }
  .provider-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .phase-list li { grid-template-columns: 1fr; gap: 10px; }
  .lead-meta { flex-direction: column; align-items: flex-start; }
  .lead-copy blockquote p { padding-left: 0; padding-top: 34px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .cta-actions { width: 100%; }
  .cta-actions .button { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *:before, *:after { transition: none !important; animation: none !important; }
  .reveal-up, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}
