:root {
  --navy: #071f45;
  --navy-2: #0b2a5b;
  --navy-3: #123f7a;
  --teal: #00e0d0;
  --teal-2: #00c4b8;
  --teal-glow: rgba(0, 224, 208, 0.55);
  --ink: #0f1b2d;
  --muted: #5b6b7c;
  --line: #d7e0ea;
  --bg: #e8f4f7;
  --card: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.container { width: min(1140px, calc(100% - 2rem)); margin: 0 auto; }

/* ——— Header / mega logo ——— */
.site-header {
  border-bottom: 1px solid rgba(11, 42, 91, 0.12);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 30;
}
.header-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 0.65rem 0;
  flex-wrap: nowrap;
}
.brand { display: inline-flex; align-items: center; max-width: 100%; }
.logo {
  display: block;
  height: 110px;
  width: auto;
  max-width: min(420px, 48vw);
  flex-shrink: 0;
}
.nav {
  display: flex;
  gap: 0.75rem 1.1rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
  border-top: none;
  padding-top: 0;
  flex-shrink: 1;
}
.nav a {
  color: var(--navy-2);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.35rem 0.15rem;
}
.nav a:not(.btn):hover { color: var(--teal-2); }
.nav .btn,
.nav a.btn {
  letter-spacing: 0.02em;
  color: #ffffff !important;
  background: linear-gradient(125deg, #0b2a5b 0%, #0a6b8a 55%, #00a89c 100%);
  border: 1px solid rgba(0, 40, 60, 0.25);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  -webkit-font-smoothing: antialiased;
}
.nav .btn:hover,
.nav a.btn:hover,
.nav .btn:focus-visible,
.nav a.btn:focus-visible {
  color: #ffffff !important;
  filter: brightness(1.06);
  outline: 2px solid #00e0d0;
  outline-offset: 2px;
}
body.alive .nav .btn,
body.alive .nav a.btn {
  color: #ffffff !important;
  background: linear-gradient(125deg, #071f45 0%, #0b2a5b 40%, #0a7a72 100%);
  box-shadow: 0 8px 20px rgba(7, 31, 69, 0.35), 0 0 0 1px rgba(0, 224, 208, 0.25);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(125deg, var(--navy-2) 0%, var(--teal-2) 100%);
  color: #fff; border: 0; border-radius: 999px;
  padding: 0.9rem 1.45rem; font-weight: 700; text-decoration: none; cursor: pointer;
  font: inherit; letter-spacing: 0.01em;
  box-shadow: 0 14px 32px rgba(11, 42, 91, 0.3), 0 0 0 1px rgba(30, 200, 200, 0.18);
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; box-shadow: 0 6px 16px rgba(11, 42, 91, 0.18); }
.btn-outline {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.75); box-shadow: none;
}
.hero .btn-outline { color: #fff; border-color: rgba(255, 255, 255, 0.8); }
.hero .btn-outline:hover { background: rgba(255, 255, 255, 0.12); }

/* ——— Hero energy ——— */
.hero {
  position: relative;
  padding: 4.75rem 0 4rem;
  overflow: hidden;
  color: #e8f4ff;
  background:
    radial-gradient(ellipse 80% 60% at 90% 10%, rgba(30, 200, 200, 0.35), transparent 55%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(18, 168, 184, 0.22), transparent 50%),
    linear-gradient(145deg, #071f45 0%, #0b2a5b 42%, #0a3a6e 78%, #0d4a7a 100%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30, 200, 200, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 200, 200, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 35%, transparent 80%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.4rem;
  align-items: center;
  z-index: 1;
}
.hero-copy { min-width: 0; }
.eyebrow {
  display: inline-block;
  color: #9ff5f5;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin: 0 0 0.65rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(30, 200, 200, 0.14);
  border: 1px solid rgba(30, 200, 200, 0.35);
}
.hero h1 {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  line-height: 1.08;
  color: #fff;
  margin: 0 0 1.15rem;
  letter-spacing: -0.03em;
  font-weight: 800;
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.28);
}
.lede {
  color: rgba(232, 244, 255, 0.88);
  font-size: 1.12rem;
  line-height: 1.65;
  max-width: 36rem;
  margin: 0 0 1rem;
  font-weight: 450;
}
.tagline {
  color: #b8f3f3;
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.85rem; }
.hero-visual {
  position: relative;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: -8% -6%;
  background: radial-gradient(circle, var(--teal-glow), transparent 65%);
  z-index: 0;
  animation: pulseGlow 4.5s ease-in-out infinite;
}
.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%; height: auto; display: block;
  border-radius: 1.4rem;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(30, 200, 200, 0.25);
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.55; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.03); }
}

/* ——— Trust strip ——— */
.trust {
  border-block: 1px solid rgba(11, 42, 91, 0.1);
  background:
    linear-gradient(90deg, rgba(30, 200, 200, 0.08), transparent 30%, transparent 70%, rgba(11, 42, 91, 0.06)),
    var(--bg);
}
.trust-row {
  display: flex; flex-wrap: wrap; gap: 0.75rem 1rem; justify-content: center;
  padding: 1.35rem 0;
  font-weight: 700;
  color: var(--navy-2);
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}
.trust-row span {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(11, 42, 91, 0.1);
  box-shadow: 0 6px 16px rgba(11, 42, 91, 0.06);
}

/* ——— Sections / cards ——— */
.section { padding: 4.5rem 0; }
.section-alt {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(30, 200, 200, 0.08), transparent 45%),
    var(--bg);
}
.section h2 {
  color: var(--navy-2);
  margin: 0 0 0.7rem;
  font-size: clamp(1.65rem, 2.4vw, 2.05rem);
  letter-spacing: -0.025em;
  font-weight: 800;
  line-height: 1.15;
}
.section-lead {
  color: var(--muted);
  max-width: 40rem;
  margin: 0 0 2.1rem;
  font-size: 1.05rem;
  line-height: 1.65;
}

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: 1.65rem 1.5rem 1.7rem;
  box-shadow: 0 16px 40px rgba(11, 42, 91, 0.09);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(180deg, var(--teal), var(--navy-2));
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(11, 42, 91, 0.14);
}
.card-icon {
  display: grid;
  place-items: center;
  width: 72px; height: 72px;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(30, 200, 200, 0.18), rgba(11, 42, 91, 0.08));
  border: 1px solid rgba(30, 200, 200, 0.25);
}
.card-icon img { width: 48px; height: 48px; display: block; }
.card h3 { margin: 0 0 0.5rem; color: var(--navy-2); font-size: 1.2rem; font-weight: 800; letter-spacing: -0.01em; }
.card p { margin: 0; color: var(--muted); line-height: 1.6; font-size: 0.98rem; }

.paths-block { margin-top: 2.75rem; }
.paths-title { color: var(--navy-2); margin: 0 0 0.85rem; font-size: 1.3rem; }
.paths-img {
  width: min(560px, 100%); height: auto; display: block; margin-bottom: 1rem;
  border-radius: 1rem;
  box-shadow: 0 16px 40px rgba(11, 42, 91, 0.1);
}

/* ——— Diagrams ——— */
.diagram {
  margin: 0 0 1.5rem;
  padding: 1.35rem 1.35rem 1.5rem;
  background: linear-gradient(180deg, #fff, #f3fafb);
  border: 1px solid rgba(11, 42, 91, 0.1);
  border-radius: 1.35rem;
  box-shadow:
    0 18px 44px rgba(11, 42, 91, 0.1),
    0 0 0 1px rgba(30, 200, 200, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  position: relative;
}
.diagram::after {
  content: "";
  position: absolute;
  inset: auto 1.2rem 1.2rem auto;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 200, 200, 0.2), transparent 70%);
  pointer-events: none;
  animation: pulseGlow 5s ease-in-out infinite;
}
.diagram figcaption {
  font-weight: 800;
  color: var(--navy-2);
  margin: 0 0 1rem;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.diagram img {
  width: 100%; height: auto; display: block;
  border-radius: 0.85rem;
  border: 1px solid rgba(11, 42, 91, 0.06);
}

.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; margin-top: 0.75rem;
}
.step-card {
  background: #fff;
  border: 1px solid rgba(11, 42, 91, 0.1);
  border-radius: 1.25rem;
  padding: 1.5rem 1.15rem;
  text-align: center;
  box-shadow: 0 14px 36px rgba(11, 42, 91, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.step-card:hover { box-shadow: 0 20px 44px rgba(11, 42, 91, 0.12); }
.step-card:hover { transform: translateY(-3px); }
.step-card img { margin: 0 auto 0.75rem; display: block; }
.step-card h3 { margin: 0 0 0.45rem; color: var(--navy-2); font-size: 1.08rem; font-weight: 800; }
.step-card p { margin: 0; color: var(--muted); font-size: 0.93rem; }

.contact { max-width: 720px; }
.contact-panel {
  background:
    radial-gradient(ellipse at 100% 0%, rgba(30, 200, 200, 0.14), transparent 50%),
    linear-gradient(180deg, #ffffff, #eef8fa);
  border: 1px solid rgba(11, 42, 91, 0.1);
  border-radius: 1.55rem;
  padding: 2.15rem 1.85rem 2.2rem;
  box-shadow: 0 24px 60px rgba(11, 42, 91, 0.13);
}
.contact-panel h2 { letter-spacing: -0.02em; font-weight: 800; }
.lead { display: grid; gap: 0.85rem; margin-top: 1.1rem; }
.lead label { display: grid; gap: 0.35rem; font-weight: 600; color: var(--navy-2); font-size: 0.92rem; }
.lead input, .lead textarea {
  border: 1px solid var(--line); border-radius: 0.75rem;
  padding: 0.85rem 0.95rem; font: inherit; background: #fff;
}
.lead input:focus, .lead textarea:focus {
  outline: 2px solid rgba(30, 200, 200, 0.45); border-color: var(--teal);
}
.form-note { color: var(--navy-3); font-weight: 600; min-height: 1.2em; margin: 0.25rem 0 0; }

.footer {
  border-top: 1px solid rgba(11, 42, 91, 0.1);
  padding: 3rem 0 3.1rem;
  text-align: center;
  background:
    linear-gradient(180deg, #eef6fa 0%, #ffffff 55%);
  position: relative;
}
.footer::before {
  content: "";
  display: block;
  height: 3px;
  width: min(180px, 40%);
  margin: 0 auto 1.5rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--navy-2), var(--teal));
}
.footer-inner { display: grid; gap: 0.45rem; justify-items: center; }
.logo-sm {
  height: 80px;
  width: auto;
  max-width: min(320px, 70vw);
}
.footer-name { margin: 0.35rem 0 0; font-weight: 800; color: var(--navy-2); letter-spacing: -0.01em; }
.footer .tag { color: var(--navy-3); font-weight: 700; letter-spacing: 0.03em; margin: 0; font-size: 0.95rem; }
.tiny { font-size: 0.78rem; color: var(--muted); margin: 0.45rem 0 0; }

@media (max-width: 900px) {
  .header-inner { flex-direction: column; align-items: flex-start; flex-wrap: wrap; }
  .nav { margin-left: 0; width: 100%; justify-content: flex-start; border-top: 1px solid var(--line); padding-top: 0.5rem; }
  .hero-grid, .cards, .cards-2, .steps-grid { grid-template-columns: 1fr; }
  .logo { height: 88px; max-width: min(360px, 92vw); }
  .logo-sm { height: 64px; max-width: min(260px, 80vw); }
  .hero { padding: 2.8rem 0 2.2rem; }
  .hero .btn-outline { color: #fff; }
  .nav { gap: 0.65rem 0.9rem; }
}


/* ——— Deadpan-kill revision ——— */
body.alive .hero {
  padding: 5rem 0 4.25rem;
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(0, 224, 208, 0.5), transparent 58%),
    radial-gradient(ellipse 45% 40% at 8% 75%, rgba(0, 196, 184, 0.28), transparent 52%),
    radial-gradient(circle at 50% 120%, rgba(255, 255, 255, 0.08), transparent 45%),
    linear-gradient(150deg, #061833 0%, #0b2a5b 38%, #0c4570 72%, #0e5a7a 100%);
}
body.alive .hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% 40%;
  height: 55%;
  background: radial-gradient(ellipse, rgba(0, 224, 208, 0.18), transparent 70%);
  animation: driftGlow 9s ease-in-out infinite alternate;
  pointer-events: none;
}
body.alive .eyebrow {
  color: #041820;
  background: linear-gradient(90deg, #00e0d0, #7dffef);
  border: none;
  box-shadow: 0 8px 24px rgba(0, 224, 208, 0.35);
  animation: fadeUp 0.7s ease both;
}
body.alive .hero h1 { animation: fadeUp 0.75s ease 0.05s both; }
body.alive .lede { animation: fadeUp 0.75s ease 0.12s both; }
body.alive .tagline { animation: fadeUp 0.75s ease 0.18s both; color: #9ffaf0; }
body.alive .hero-actions { animation: fadeUp 0.75s ease 0.24s both; }

body.alive .btn {
  background: linear-gradient(125deg, #00c4b8 0%, #0b2a5b 55%, #071f45 100%);
  box-shadow: 0 16px 36px rgba(0, 196, 184, 0.35), 0 0 0 1px rgba(0, 224, 208, 0.35);
}
body.alive .btn-pulse {
  animation: ctaPulse 2.4s ease-in-out infinite;
}
body.alive .btn-outline {
  border-width: 2px;
  border-color: #7dffef;
  color: #eafffc;
  backdrop-filter: blur(4px);
  background: rgba(0, 224, 208, 0.08);
}
body.alive .btn-outline:hover {
  background: rgba(0, 224, 208, 0.22);
}

body.alive .hero-visual { isolation: isolate; }
body.alive .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: 0;
  pointer-events: none;
}
body.alive .orb-a {
  width: 180px; height: 180px;
  top: -8%; right: 6%;
  background: radial-gradient(circle, rgba(0, 224, 208, 0.65), transparent 70%);
  animation: floatA 6s ease-in-out infinite;
}
body.alive .orb-b {
  width: 140px; height: 140px;
  bottom: 4%; left: -4%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 70%);
  animation: floatB 7.5s ease-in-out infinite;
}
body.alive .hero-art {
  animation: floatArt 5.5s ease-in-out infinite;
  border: 2px solid rgba(0, 224, 208, 0.35) !important;
}

body.alive .trust {
  background:
    linear-gradient(90deg, rgba(0, 224, 208, 0.18), rgba(255,255,255,0.7) 28%, rgba(255,255,255,0.7) 72%, rgba(11, 42, 91, 0.1)),
    #dff6f4;
}
body.alive .trust-row span {
  border-color: rgba(0, 196, 184, 0.35);
  box-shadow: 0 8px 20px rgba(0, 196, 184, 0.12);
}

body.alive .section {
  background-image:
    radial-gradient(ellipse at 100% 0%, rgba(0, 224, 208, 0.07), transparent 40%);
}
body.alive .section-alt {
  background:
    radial-gradient(ellipse at 0% 20%, rgba(0, 224, 208, 0.14), transparent 42%),
    radial-gradient(ellipse at 100% 80%, rgba(11, 42, 91, 0.06), transparent 45%),
    #e4f3f5;
}
body.alive .card {
  background: linear-gradient(165deg, #ffffff 0%, #f2fcfb 55%, #eaf8f6 100%);
  border-color: rgba(0, 196, 184, 0.22);
}
body.alive .card::before {
  width: 5px;
  background: linear-gradient(180deg, #00e0d0, #0b2a5b);
}
body.alive .card-icon {
  background: linear-gradient(145deg, rgba(0, 224, 208, 0.28), rgba(11, 42, 91, 0.1));
  border-color: rgba(0, 224, 208, 0.4);
  animation: iconBob 4.8s ease-in-out infinite;
}
body.alive .card:nth-child(2) .card-icon { animation-delay: 0.4s; }
body.alive .card:nth-child(3) .card-icon { animation-delay: 0.8s; }

body.alive .diagram {
  border-color: rgba(0, 196, 184, 0.28);
  box-shadow:
    0 20px 48px rgba(11, 42, 91, 0.12),
    0 0 0 1px rgba(0, 224, 208, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
body.alive .diagram img {
  animation: diagramShift 8s ease-in-out infinite alternate;
}
body.alive .diagram figcaption {
  color: #0b2a5b;
  background: linear-gradient(90deg, rgba(0, 224, 208, 0.18), transparent);
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

body.alive .step-card {
  border-color: rgba(0, 196, 184, 0.22);
}
body.alive .step-card img { animation: iconBob 5.2s ease-in-out infinite; }
body.alive .step-card:nth-child(2) img { animation-delay: 0.3s; }
body.alive .step-card:nth-child(3) img { animation-delay: 0.6s; }
body.alive .step-card:nth-child(4) img { animation-delay: 0.9s; }

body.alive .contact-panel {
  border-color: rgba(0, 196, 184, 0.35);
  box-shadow: 0 28px 64px rgba(0, 196, 184, 0.18);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 16px 36px rgba(0, 196, 184, 0.35), 0 0 0 0 rgba(0, 224, 208, 0.45); }
  50% { box-shadow: 0 18px 40px rgba(0, 196, 184, 0.45), 0 0 0 10px rgba(0, 224, 208, 0); }
}
@keyframes floatA {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-12px, 16px); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(14px, -10px); }
}
@keyframes floatArt {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes driftGlow {
  from { transform: translateX(0); opacity: 0.5; }
  to { transform: translateX(-8%); opacity: 0.9; }
}
@keyframes iconBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes diagramShift {
  from { filter: saturate(1); }
  to { filter: saturate(1.08) brightness(1.02); }
}

@media (prefers-reduced-motion: reduce) {
  body.alive .btn-pulse,
  body.alive .orb-a,
  body.alive .orb-b,
  body.alive .hero-art,
  body.alive .card-icon,
  body.alive .step-card img,
  body.alive .diagram img,
  body.alive .hero::after,
  body.alive .eyebrow,
  body.alive .hero h1,
  body.alive .lede,
  body.alive .tagline,
  body.alive .hero-actions { animation: none !important; }
}

/* aliases for HTML class names */
body.alive .hero-visual { isolation: isolate; position: relative; }
body.alive .hero-visual .orb { position: absolute; }

/* HTML class aliases for deadpan-kill animations */
body.alive .tagline { animation: fadeUp 0.75s ease 0.18s both; color: #9ffaf0; }
body.alive .hero-actions { animation: fadeUp 0.75s ease 0.24s both; }
body.alive .section-lead { max-width: 42rem; }


/* ——— Ref-craft amplify (CrowdStrike density + PH product energy) ——— */
.section-kicker {
  display: inline-block;
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-2);
}
.section-kicker.light { color: #9ffaf0; }

.metrics {
  background:
    linear-gradient(90deg, rgba(0, 224, 208, 0.16), rgba(255,255,255,0.85) 30%, rgba(255,255,255,0.85) 70%, rgba(11,42,91,0.08)),
    #dff7f4;
  border-block: 1px solid rgba(0, 196, 184, 0.25);
}
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.6rem 0;
}
.metric {
  background: #fff;
  border: 1px solid rgba(0, 196, 184, 0.28);
  border-radius: 1.1rem;
  padding: 1.1rem 1.15rem;
  box-shadow: 0 12px 28px rgba(11, 42, 91, 0.08);
  display: grid;
  gap: 0.35rem;
}
.metric strong {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--navy-2);
  letter-spacing: -0.03em;
  line-height: 1;
}
.metric span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 600;
}

.platform-rails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin: 0 0 2rem;
}
.rail {
  position: relative;
  background: linear-gradient(165deg, #071f45, #0b2a5b 55%, #0d4a6e);
  color: #e8f8f6;
  border-radius: 1.25rem;
  padding: 1.5rem 1.35rem 1.55rem;
  box-shadow: 0 18px 40px rgba(7, 31, 69, 0.28);
  overflow: hidden;
}
.rail::after {
  content: "";
  position: absolute;
  right: -20%; top: -30%;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(0,224,208,0.35), transparent 70%);
  pointer-events: none;
}
.rail-num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #041820;
  background: linear-gradient(90deg, #00e0d0, #7dffef);
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}
.rail h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
}
.rail p { margin: 0; color: rgba(232, 248, 246, 0.86); font-size: 0.95rem; line-height: 1.55; }

.cta-band {
  position: relative;
  padding: 3.25rem 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,224,208,0.35), transparent 50%),
    linear-gradient(120deg, #071f45 0%, #0b2a5b 45%, #0c5a6e 100%);
  color: #eafffc;
  overflow: hidden;
}
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  letter-spacing: -0.02em;
  color: #fff;
}
.cta-band p { margin: 0; color: rgba(234, 255, 252, 0.88); max-width: 36rem; }
.btn-light {
  background: linear-gradient(120deg, #00e0d0, #7dffef) !important;
  color: #041820 !important;
  box-shadow: 0 16px 36px rgba(0, 224, 208, 0.4) !important;
}

@media (max-width: 900px) {
  .metrics-row, .platform-rails { grid-template-columns: 1fr; }
  .cta-band-inner { align-items: flex-start; }
}

/* --- Two product paths (HCO lock) --- */
.section-paths {
  background: linear-gradient(180deg, #f4fbfa 0%, #eef6f8 100%);
}
.product-paths {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.path-card {
  background: #fff;
  border: 1px solid rgba(8, 40, 60, 0.1);
  border-radius: 16px;
  padding: 1.5rem 1.4rem 1.35rem;
  box-shadow: 0 10px 28px rgba(4, 24, 40, 0.06);
  position: relative;
  overflow: hidden;
}
.path-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #00e0d0, #0a6b8a);
}
.path-direct::before {
  background: linear-gradient(180deg, #0b3a5c, #00c4b4);
}
.path-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a6b8a;
  background: rgba(0, 224, 208, 0.15);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}
.path-card h3 {
  margin: 0 0 0.65rem;
  color: var(--navy-2);
  font-size: 1.2rem;
}
.path-card p {
  margin: 0 0 0.85rem;
  color: #334155;
  line-height: 1.55;
}
.path-bullets {
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: #1e293b;
  font-size: 0.92rem;
  line-height: 1.5;
}
.path-bullets li { margin-bottom: 0.35rem; }
.paths-note {
  margin: 1.25rem 0 0;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.45;
}
@media (max-width: 800px) {
  .product-paths { grid-template-columns: 1fr; }
}

