/* Reference homepage CSS - copied from octalap-homepage-download-v16 design */

/* ── Font override: force Inter throughout the homepage, matching the v16 design ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* Override the global heading / body font variables for the homepage scope */
header.nav-shell,
main,
.hero,
.hero *,
main *,
footer,
footer *,
header.nav-shell * {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

:root {
  --ink: #060b14;
  --muted: #687386;
  --line: #dbe5f0;
  --soft: #f4f8fd;
  --blue: #2563eb;
  --blue-2: #63a4ff;
  --green: #0fa66a;
  --shadow: 0 24px 70px rgba(24, 45, 82, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 0%, rgba(98, 158, 255, .24), transparent 36rem),
    linear-gradient(180deg, #f1f1f1 0%, #f8fbff 34%, #ffffff 100%);
}
a { color: inherit; text-decoration: none; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.nav-shell {
  position: sticky;
  top: 18px;
  z-index: 20;
  width: min(980px, calc(100% - 32px));
  margin: 18px auto 0;
  border: 1px solid rgba(205, 219, 238, .8);
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(36, 65, 110, .16);
}
nav {
  min-height: 62px;
  padding: 10px 12px 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; }
.mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 1px solid #cfe0fb;
  border-radius: 12px;
  background: linear-gradient(145deg, #fff, #edf5ff);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.75);
}
.links { display: flex; align-items: center; gap: 26px; color: #3d495b; font-size: 14px; font-weight: 750; }
.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}
.btn.primary {
  color: #fff;
  background: linear-gradient(180deg, #3b82f6, #1d4ed8);
  box-shadow: 0 14px 30px rgba(37, 99, 235, .34), inset 0 1px rgba(255,255,255,.26);
}
.btn.ghost {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.hero {
  --signal-edge: max(42px, calc((100vw - 1180px) / 2));
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: center;
  padding: 92px 0 34px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #F1F1F1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
#heroParticles {
  position: absolute;
  inset: 0;
  display: none;
  opacity: 0;
}
.hero-orb {
  display: none;
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(8px);
  background: radial-gradient(circle, rgba(37,99,235,.22), transparent 68%);
  animation: driftOrb 12s ease-in-out infinite;
}
.hero-orb.one { left: 3%; top: 18%; }
.hero-orb.two { right: 3%; top: 24%; animation-delay: -5s; background: radial-gradient(circle, rgba(15,166,106,.18), transparent 68%); }
.floating-signal {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  width: 230px;
  padding: 0 18px;
  justify-content: center;
  color: #172235;
  border: 1px solid rgba(157, 186, 225, .92);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 24px 70px rgba(37, 65, 106, .17), inset 0 1px rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
  text-align: center;
  animation: floatSignal 7.5s ease-in-out infinite;
}
.floating-signal::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 16px rgba(37,99,235,.55);
}
.floating-signal.warning::before { background: #f97316; box-shadow: 0 0 16px rgba(249,115,22,.55); }
.floating-signal.recovered::before { background: var(--green); box-shadow: 0 0 16px rgba(15,166,106,.55); }
.s1 { left: var(--signal-edge); top: 14%; }
.s2 { right: var(--signal-edge); top: 36%; animation-delay: -2.2s; }
.s3 { left: var(--signal-edge); top: 56%; animation-delay: -4.4s; }
.s4 { right: var(--signal-edge); top: 56%; animation-delay: -6.3s; }
.hero > .wrap {
  position: relative;
  z-index: 2;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #b8d5f6;
  color: #3a516d;
  background: rgba(255,255,255,.66);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 850;
}
h1 {
  max-width: 900px;
  margin: 28px auto 20px;
  font-size: clamp(46px, 5.9vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}
.shine {
  display: block;
  color: transparent;
  background: linear-gradient(180deg, #3b82f6, #1457de);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 14px 38px rgba(37, 99, 235, .32);
}
.lead {
  max-width: 790px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}
.hero-cta { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; margin-top: 34px; }
.integration-strip {
  margin: 54px auto 0;
  max-width: 990px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  color: #657286;
  font-size: 14px;
  font-weight: 850;
}
.logos { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.logo-chip {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 24px rgba(42, 62, 90, .08);
  color: #31557c;
  font-weight: 950;
  font-size: 12px;
  animation: stackChip 5s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * .16s);
}
.logo-chip:hover {
  color: #fff;
  background: linear-gradient(180deg, #3b82f6, #1d4ed8);
  transform: translateY(-8px) scale(1.04);
}

section { padding: 92px 0; }
.section-head { max-width: 760px; margin: 0 auto 38px; text-align: center; }
.eyebrow { color: var(--blue); font-size: 13px; font-weight: 950; text-transform: uppercase; letter-spacing: .08em; }
h2 { margin: 10px 0 12px; font-size: clamp(30px, 3.8vw, 48px); line-height: 1.06; letter-spacing: 0; }
.sub { margin: 0; color: var(--muted); font-size: 18px; line-height: 1.6; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  position: relative;
  min-height: 284px;
  padding: 30px;
  border: 1px solid rgba(205, 220, 239, .95);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,251,255,.9)),
    #fff;
  box-shadow: 0 18px 54px rgba(14, 30, 52, .09);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  opacity: .82;
}
.service-card::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.14), transparent 68%);
  transition: transform .35s ease, opacity .35s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37,99,235,.38);
  box-shadow: 0 30px 74px rgba(14, 30, 52, .15);
}
.service-card:hover::after { transform: scale(1.22); opacity: 1; }
.service-card:nth-child(n+4) {
  color: #f8fbff;
  border-color: rgba(37, 99, 235, .42);
  background:
    radial-gradient(circle at 84% 18%, rgba(99,164,255,.24), transparent 12rem),
    linear-gradient(180deg, #111827, #07101d);
  box-shadow: 0 28px 72px rgba(7, 16, 29, .22);
}
.service-card:nth-child(n+4)::before { background: linear-gradient(90deg, #63a4ff, #0fa66a); }
.service-card:nth-child(n+4)::after { background: radial-gradient(circle, rgba(99,164,255,.22), transparent 68%); }
.service-card:nth-child(n+4) p { color: #aeb9ca; }
.service-card:nth-child(n+4) .icon {
  color: #fff;
  background: rgba(37,99,235,.28);
  border-color: rgba(99,164,255,.28);
}
.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--blue);
  background: #edf5ff;
  border: 1px solid #d9e8fb;
  font-weight: 950;
}
.service-card h3 { position: relative; z-index: 1; margin: 22px 0 12px; font-size: 21px; line-height: 1.18; letter-spacing: 0; }
.service-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); line-height: 1.62; font-size: 15.5px; }
.service-card svg { width: 22px; height: 22px; stroke-width: 2.4; }

.core-section {
  background:
    radial-gradient(circle at 50% 20%, rgba(37,99,235,.18), transparent 34rem),
    linear-gradient(180deg, #f7fbff, #fff);
  border-block: 1px solid #e4edf7;
}
.core-visual {
  position: relative;
  min-height: 940px;
  max-width: 1080px;
  margin: 0 auto;
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(37,99,235,.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(37,99,235,.055) 1px, transparent 1px),
    radial-gradient(circle at 50% 43%, rgba(37,99,235,.20), transparent 22rem),
    radial-gradient(circle at 50% 43%, rgba(99,164,255,.18), transparent 34rem),
    rgba(255,255,255,.66);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
  border: 1px solid rgba(205, 220, 239, .95);
  box-shadow: 0 34px 92px rgba(24, 45, 82, .12);
  overflow: hidden;
}
#coreParticles {
  position: absolute;
  inset: 0;
  opacity: .72;
}
.core-ring {
  position: absolute;
  left: 50%;
  top: 45%;
  width: 470px;
  height: 470px;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(37,99,235,.32);
  border-radius: 50%;
  animation: spin 26s linear infinite;
}
.core-ring.two { width: 650px; height: 650px; animation-duration: 38s; animation-direction: reverse; opacity: .6; }
.core-line {
  position: absolute;
  z-index: 1;
  height: 2px;
  background-image: linear-gradient(90deg, rgba(37,99,235,.65) 45%, transparent 45%);
  background-size: 12px 2px;
  filter: drop-shadow(0 0 12px rgba(37,99,235,.32));
  animation: blueDash 1.4s linear infinite;
}
.core-line.vertical {
  width: 2px;
  height: 128px;
  background-image: linear-gradient(180deg, rgba(37,99,235,.65) 45%, transparent 45%);
  background-size: 2px 12px;
}
.cl1 { left: 292px; top: 206px; width: 252px; transform: rotate(18deg); transform-origin: right center; }
.cl2 { right: 292px; top: 206px; width: 252px; transform: rotate(-18deg); transform-origin: left center; }
.cl3 { left: 268px; bottom: 318px; width: 278px; transform: rotate(-20deg); transform-origin: right center; }
.cl4 { right: 268px; bottom: 318px; width: 278px; transform: rotate(20deg); transform-origin: left center; }
.cl5 { left: 50%; bottom: 208px; height: 120px; transform: translateX(-50%); }
.core-card {
  position: absolute;
  z-index: 2;
  width: 260px;
  padding: 20px;
  border: 1px solid rgba(204, 220, 240, .95);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 58px rgba(25, 48, 78, .13);
  color: #1d2a3d;
  font-weight: 850;
  animation: cardBreathe 5.5s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * .28s);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.core-card:hover {
  transform: translateY(-8px);
  border-color: rgba(37,99,235,.42);
  box-shadow: 0 30px 76px rgba(37,99,235,.18), 0 12px 30px rgba(25,48,78,.09);
}
.core-card b { display: block; font-size: 18px; margin-bottom: 8px; }
.core-card small { display: block; color: var(--muted); font-weight: 700; line-height: 1.45; }
.core-card .mini-stat { display: inline-flex; margin-top: 14px; padding: 6px 10px; border-radius: 999px; color: var(--blue); background: #edf5ff; font-size: 12px; font-weight: 950; }
.c1 { left: 58px; top: 108px; --i: 1; }
.c2 { right: 58px; top: 108px; --i: 2; }
.c3 { left: 58px; bottom: 292px; --i: 3; }
.c4 { right: 58px; bottom: 292px; --i: 4; }
.core-center {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 45%;
  width: 350px;
  min-height: 350px;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 34px;
  text-align: center;
  border: 1px solid #b8d5f6;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 24%, #fff, #edf6ff 72%);
  box-shadow: 0 28px 80px rgba(37,99,235,.25), inset 0 0 0 14px rgba(255,255,255,.52);
  font-weight: 950;
  animation: centerLift 4.8s ease-in-out infinite;
}
.dental-mark {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: var(--blue);
  background:
    radial-gradient(circle at 50% 25%, #fff, #eef6ff 68%);
  box-shadow: 0 18px 44px rgba(37,99,235,.20), inset 0 0 0 1px rgba(37,99,235,.18);
}
.dental-mark svg { width: 42px; height: 42px; stroke-width: 2.1; }
.hub-title {
  max-width: 230px;
  color: #07111f;
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: 0;
}
.hub-copy {
  max-width: 230px;
  margin: 0;
  color: #607088;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 750;
}
.hub-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 260px;
}
.hub-metrics span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(237,245,255,.92);
  box-shadow: inset 0 0 0 1px rgba(37,99,235,.10);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.core-center::before,
.core-center::after {
  content: "";
  position: absolute;
  inset: -28px;
  border: 1px dashed rgba(37,99,235,.33);
  border-radius: 50%;
  animation: spin 24s linear infinite;
}
.core-center::after { inset: -58px; animation-duration: 34s; animation-direction: reverse; opacity: .55; }
.revenue-pipeline {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 34px;
  width: min(850px, calc(100% - 80px));
  transform: translateX(-50%);
  padding: 18px;
  border: 1px solid rgba(205, 220, 239, .96);
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 64px rgba(25, 48, 78, .13);
}
.pipeline-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  color: #1d2a3d;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.pipeline-title span:last-child { color: var(--blue); }
.pipeline-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.pipeline-rail::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 22px;
  height: 2px;
  background: linear-gradient(90deg, rgba(249,115,22,.7), rgba(37,99,235,.7), rgba(15,166,106,.75));
  filter: drop-shadow(0 0 10px rgba(37,99,235,.28));
}
.pipeline-rail::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 8%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2563eb;
  box-shadow: 0 0 18px rgba(37,99,235,.82);
  animation: pipelineDot 4.2s ease-in-out infinite;
}
.pipe-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
  color: #344357;
  font-size: 12px;
  font-weight: 850;
}
.pipe-dot {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #dbe8f7;
  border-radius: 50%;
  color: var(--blue);
  background: #f8fbff;
  box-shadow: 0 12px 28px rgba(37,99,235,.1);
  font-weight: 950;
  animation: pipePulse 3.4s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * .28s);
}

@media (max-width: 1080px) {
  .core-visual { min-height: 900px; }
  .core-card { width: 230px; padding: 18px; }
  .core-card b { font-size: 17px; }
  .core-center { width: 320px; min-height: 320px; padding: 28px; }
  .hub-title { font-size: 22px; }
  .hub-copy { font-size: 12.5px; max-width: 215px; }
  .c1 { left: 42px; top: 104px; }
  .c2 { right: 42px; top: 104px; }
  .c3 { left: 42px; bottom: 292px; }
  .c4 { right: 42px; bottom: 292px; }
  .cl1 { left: 244px; }
  .cl2 { right: 244px; }
  .cl3 { left: 236px; }
  .cl4 { right: 236px; }
}

.belief {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.belief h2 { text-align: left; }
.belief-panel {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.stat {
  min-height: 118px;
  padding: 18px;
  border: 1px solid #e0e9f4;
  border-radius: 8px;
  background: #f8fbff;
}
.stat b { display: block; font-size: 30px; margin-bottom: 8px; }
.stat span { color: var(--muted); font-weight: 750; }

.pricing { background: #f7fbff; border-top: 1px solid #e6eef8; }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card {
  position: relative;
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(14, 30, 52, .08);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, transparent, #63a4ff, #0fa66a, transparent);
  opacity: 0;
  transform: translateX(-35%);
  transition: opacity .35s ease, transform .55s ease;
}
.price-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -55% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.16), transparent 68%);
  opacity: 0;
  transition: opacity .35s ease, transform .45s ease;
  pointer-events: none;
}
.price-card > * {
  position: relative;
  z-index: 1;
}
.price-card:hover,
.price-card:focus-within {
  transform: translateY(-10px);
  border-color: rgba(37,99,235,.58);
  box-shadow: 0 34px 86px rgba(37,99,235,.18), 0 14px 36px rgba(14,30,52,.08);
}
.price-card:hover::before,
.price-card:focus-within::before { opacity: 1; transform: translateX(0); }
.price-card:hover::after,
.price-card:focus-within::after { opacity: 1; transform: translate(-18px, -18px) scale(1.1); }
.price-card:hover .tag,
.price-card:focus-within .tag {
  color: #fff;
  background: linear-gradient(180deg, #3b82f6, #1d4ed8);
}
.price-card:hover .btn,
.price-card:focus-within .btn {
  border-color: rgba(37,99,235,.46);
  box-shadow: 0 14px 30px rgba(37,99,235,.18);
}
.price-card.featured { border-color: #9cc4ff; box-shadow: 0 24px 70px rgba(37,99,235,.18); }
.tag {
  display: inline-flex;
  width: max-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eef4fb;
  color: #526176;
  font-size: 13px;
  font-weight: 850;
}
.price-card h3 { margin: 20px 0 8px; font-size: 24px; }
.price { font-size: 38px; font-weight: 950; margin: 12px 0; }
ul { padding-left: 0; list-style: none; display: grid; gap: 12px; color: #344357; }
li::before { content: "+"; color: var(--green); font-weight: 950; margin-right: 10px; }
.price-card .btn { margin-top: auto; }

.dark-showcase {
  color: #f8fafc;
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, .16), transparent 32rem),
    radial-gradient(circle at 76% 42%, rgba(249, 115, 22, .10), transparent 24rem),
    #050607;
  border-block: 1px solid #171b22;
  overflow: hidden;
}
.dark-showcase .section-head { color: #f8fafc; }
.dark-showcase .sub { color: #8e98a8; }
.dark-showcase .eyebrow { color: #ff6a2a; }

.repair-stage {
  position: relative;
  min-height: 680px;
  max-width: 1120px;
  margin: 46px auto 0;
  border: 1px solid #202630;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 52%, rgba(37,99,235,.16), transparent 20rem),
    radial-gradient(circle at 28% 42%, rgba(249,115,22,.12), transparent 18rem),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #030405;
  background-size: auto, auto, 42px 42px, 42px 42px, auto;
  box-shadow: 0 44px 110px rgba(0,0,0,.42);
  overflow: hidden;
}
.repair-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 34%, rgba(255,90,31,.08) 45%, rgba(37,99,235,.12) 56%, transparent 70%);
  animation: repairSweep 6s ease-in-out infinite;
}
.repair-zone {
  position: absolute;
  z-index: 2;
  top: 76px;
  width: 300px;
  min-height: 500px;
  display: grid;
  align-content: start;
  gap: 16px;
}
.repair-zone.left { left: 42px; }
.repair-zone.right { right: 42px; }
.zone-title {
  color: #9ca6b6;
  font: 850 12px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.zone-title::before,
.zone-title::after {
  content: "";
  width: 7px;
  height: 7px;
  background: #4f565f;
}
.broken-card,
.fixed-card {
  position: relative;
  min-height: 92px;
  padding: 18px;
  border: 1px solid #2a3039;
  background: rgba(11,12,14,.88);
  box-shadow: inset 0 1px rgba(255,255,255,.05), 0 18px 42px rgba(0,0,0,.28);
  overflow: hidden;
}
.broken-card {
  border-color: rgba(255,90,31,.38);
  animation: brokenShake 5.5s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * .32s);
}
.broken-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(118deg, transparent 0 45%, rgba(255,90,31,.32) 46%, transparent 48%),
    linear-gradient(62deg, transparent 0 58%, rgba(255,255,255,.10) 59%, transparent 61%);
  animation: crackFlash 3.8s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * .25s);
}
.fixed-card {
  border-color: rgba(37,99,235,.38);
  animation: fixedGlow 4.8s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * .3s);
}
.fixed-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,.16), transparent);
  transform: translateX(-120%);
  animation: fixedScan 4.8s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * .38s);
}
.repair-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 900;
}
.repair-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  color: #0b1220;
  background: #fff;
  font-size: 11px;
  font-weight: 950;
}
.broken-card .repair-label span:last-child,
.fixed-card .repair-label span:last-child {
  display: block;
  color: #ff6a2a;
  font: 850 10px/1.2 ui-monospace, Consolas, monospace;
  text-transform: uppercase;
  margin-top: 5px;
}
.fixed-card .repair-label span:last-child { color: #63a4ff; }
.repair-core {
  position: absolute;
  z-index: 4;
  left: 50%;
  top: 50%;
  width: 290px;
  height: 290px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(37,99,235,.72);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.12), transparent 26%),
    radial-gradient(circle, rgba(37,99,235,.28), rgba(5,8,13,.96) 66%);
  box-shadow: 0 0 80px rgba(37,99,235,.25), inset 0 0 0 16px rgba(255,255,255,.035);
}
.repair-core::before,
.repair-core::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(99,164,255,.42);
  animation: repairRotate 18s linear infinite;
}
.repair-core::before { inset: -34px; }
.repair-core::after { inset: -68px; animation-duration: 29s; animation-direction: reverse; opacity: .58; }
.core-inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 10px;
}
.repair-logo {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, #3b82f6, #1d4ed8);
  box-shadow: 0 0 36px rgba(37,99,235,.72);
  font-size: 34px;
  font-weight: 950;
  animation: repairLogoPulse 2.4s ease-in-out infinite;
}
.core-inner b { font-size: 24px; }
.core-inner span { color: #9dbdf5; font: 850 12px/1 ui-monospace, Consolas, monospace; text-transform: uppercase; }
.repair-beam {
  position: absolute;
  z-index: 3;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ff5a1f 16%, #63a4ff 58%, transparent);
  filter: drop-shadow(0 0 14px rgba(99,164,255,.72));
  transform-origin: center;
  animation: repairBeam 2.2s ease-in-out infinite;
}
.b1 { left: 310px; top: 218px; width: 230px; transform: rotate(13deg); }
.b2 { right: 310px; top: 218px; width: 230px; transform: rotate(-13deg); animation-delay: .45s; }
.b3 { left: 310px; bottom: 210px; width: 230px; transform: rotate(-15deg); animation-delay: .85s; }
.b4 { right: 310px; bottom: 210px; width: 230px; transform: rotate(15deg); animation-delay: 1.15s; }
.repair-packet {
  position: absolute;
  z-index: 5;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #63a4ff;
  box-shadow: 0 0 22px rgba(99,164,255,.92);
  animation: packetRepair 4.2s linear infinite;
}
.p2 { animation-delay: 1.05s; }
.p3 { animation-delay: 2.1s; }
.p4 { animation-delay: 3.15s; }
.leak-drop {
  position: absolute;
  z-index: 1;
  width: 6px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(#ff5a1f, transparent);
  opacity: .55;
  animation: leakFall 3.4s linear infinite;
}
.ld1 { left: 260px; top: 178px; }
.ld2 { left: 198px; top: 370px; animation-delay: 1.1s; }
.ld3 { left: 336px; top: 440px; animation-delay: 2.2s; }
.repair-caption {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 5;
  transform: translateX(-50%);
  width: min(760px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.repair-stat {
  padding: 13px 16px;
  border: 1px solid rgba(99,164,255,.28);
  background: rgba(7,10,15,.74);
  backdrop-filter: blur(10px);
  text-align: center;
}
.repair-stat b { display: block; color: #fff; font-size: 20px; }
.repair-stat span { color: #8e98a8; font-size: 11px; font-weight: 800; text-transform: uppercase; }

.security-section {
  color: #f8fafc;
  background: #151515;
  border-block: 1px solid #282828;
}
.security-section .eyebrow { color: #858585; }
.security-section .sub { color: #8f8f8f; }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.cert-card {
  position: relative;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid #343434;
  border-radius: 8px;
  background:
    linear-gradient(32deg, transparent 42%, rgba(255,255,255,.075) 43%, transparent 58%),
    linear-gradient(148deg, transparent 42%, rgba(255,255,255,.075) 43%, transparent 58%),
    #1b1b1b;
  overflow: hidden;
}
.cert-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
  transform: translateX(-120%);
  animation: certSweep 5.2s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * .42s);
}
.seal {
  align-self: center;
  width: 102px;
  height: 102px;
  display: grid;
  place-items: center;
  border: 1px solid #444;
  border-radius: 50%;
  color: #d8d8d8;
  background: radial-gradient(circle, #363636 0 44%, #272727 45% 66%, transparent 67%);
  font: 950 15px/1 ui-monospace, Consolas, monospace;
  animation: sealFloat 4.2s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * .25s);
}
.cert-card h3 { margin: 0; font-size: 26px; }
.cert-card p { margin: 8px 0 0; color: #989898; line-height: 1.52; }

.cta {
  position: relative;
  padding-bottom: 96px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 62%, rgba(37,99,235,.10), transparent 24rem),
    radial-gradient(circle at 78% 72%, rgba(15,166,106,.08), transparent 24rem),
    #fff;
}
.cta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 176px;
  width: min(860px, calc(100% - 48px));
  height: 220px;
  transform: translateX(-50%);
  border-radius: 999px;
  background:
    linear-gradient(90deg, transparent, rgba(37,99,235,.12), rgba(15,166,106,.08), transparent);
  filter: blur(30px);
  opacity: .82;
  animation: ctaAura 5.8s ease-in-out infinite;
}
.cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 940px;
  margin: 40px auto 0;
}
.cta-card {
  position: relative;
  min-height: 286px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid rgba(203, 218, 238, .98);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,251,255,.92));
  box-shadow: 0 22px 58px rgba(25, 48, 78, .09);
  text-align: left;
  overflow: hidden;
  isolation: isolate;
  animation: ctaFloat 5.6s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * .35s);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #63a4ff, #0fa66a);
  transform: translateX(-62%);
  opacity: .72;
  animation: ctaRail 3.8s ease-in-out infinite;
}
.cta-card::after {
  content: "";
  position: absolute;
  inset: -42% -28% auto auto;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.18), transparent 68%);
  opacity: .35;
  z-index: -1;
  transition: opacity .35s ease, transform .35s ease;
}
.cta-card:hover,
.cta-card:focus-within {
  transform: translateY(-10px);
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 34px 90px rgba(37,99,235,.18), 0 16px 38px rgba(25,48,78,.08);
}
.cta-card:hover::after,
.cta-card:focus-within::after {
  opacity: .72;
  transform: translate(-18px, 18px) scale(1.08);
}
.cta-card > * {
  position: relative;
  z-index: 1;
}
.cta-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid #d8e6f8;
  border-radius: 16px;
  color: var(--blue);
  background: #f4f9ff;
  box-shadow: 0 14px 32px rgba(37,99,235,.12);
  margin-bottom: 22px;
}
.cta-icon svg { width: 26px; height: 26px; stroke-width: 2.2; }
.cta-card h3 { margin: 0 0 10px; font-size: 23px; line-height: 1.15; }
.cta-card p { color: var(--muted); line-height: 1.58; margin: 0; }
.cta-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 22px 0 24px;
}
.cta-path::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  top: 17px;
  height: 2px;
  background: linear-gradient(90deg, rgba(37,99,235,.35), rgba(15,166,106,.5));
}
.cta-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: #526176;
  font-size: 11px;
  font-weight: 850;
  text-align: center;
}
.cta-step i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #d9e8f8;
  background: #fff;
  box-shadow: 0 10px 24px rgba(37,99,235,.10);
  color: var(--blue);
  font-style: normal;
  font-weight: 950;
  animation: ctaStepPulse 3.4s ease-in-out infinite;
  animation-delay: calc(var(--s, 0) * .28s);
}
.cta-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 24px;
}
.cta-status span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  color: #344357;
  background: rgba(238,246,255,.88);
  font-size: 12px;
  font-weight: 850;
}
.cta-status span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0fa66a;
  box-shadow: 0 0 14px rgba(15,166,106,.62);
  animation: dotPulse 1.8s ease-in-out infinite;
}
.cta-card .btn {
  margin-top: auto;
  width: max-content;
}



.reveal { animation: reveal .75s ease both; animation-timeline: view(); animation-range: entry 10% cover 28%; }
@keyframes reveal { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes stackChip { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes driftOrb { 0%, 100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(28px,-18px,0) scale(1.08); } }
@keyframes floatSignal { 0%, 100% { transform: translate3d(0,0,0); opacity: .72; } 50% { transform: translate3d(0,-18px,0); opacity: 1; } }
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes breathe { 0%, 100% { transform: scale(.9); opacity: .6; } 50% { transform: scale(1.08); opacity: 1; } }
@keyframes blueDash { to { background-position: 24px 0; } }
@keyframes cardBreathe { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes centerLift { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -52%) scale(1.025); } }
@keyframes pipelineDot {
  0% { left: 8%; background: #f97316; }
  33% { left: 36%; background: #2563eb; }
  66% { left: 63%; background: #2563eb; }
  100% { left: 91%; background: #0fa66a; }
}
@keyframes pipePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }
@keyframes dashRun { to { background-position: 20px 0; } }
@keyframes dotPulse { 0%, 100% { transform: scale(.75); opacity: .55; } 50% { transform: scale(1.35); opacity: 1; } }
@keyframes moduleWake { 0%, 100% { border-color: #202630; } 50% { border-color: rgba(255,90,31,.48); } }
@keyframes corePulse { 0%, 100% { transform: scale(1); opacity: .82; } 50% { transform: scale(1.08); opacity: 1; } }
@keyframes boardGlow { 0%, 100% { opacity: .65; } 50% { opacity: 1; } }
@keyframes certSweep { 0%, 56% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }
@keyframes sealFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes brokenShake {
  0%, 100% { transform: translate3d(0,0,0) rotate(0deg); }
  45% { transform: translate3d(-4px,2px,0) rotate(-.7deg); }
  50% { transform: translate3d(5px,-2px,0) rotate(.8deg); }
  55% { transform: translate3d(-2px,1px,0) rotate(-.4deg); }
}
@keyframes crackFlash { 0%, 100% { opacity: .18; } 50% { opacity: .82; } }
@keyframes fixedGlow {
  0%, 100% { border-color: rgba(37,99,235,.28); box-shadow: inset 0 1px rgba(255,255,255,.05), 0 18px 42px rgba(0,0,0,.28); }
  50% { border-color: rgba(99,164,255,.74); box-shadow: 0 0 38px rgba(37,99,235,.18), inset 0 1px rgba(255,255,255,.08); }
}
@keyframes fixedScan { 0%, 55% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }
@keyframes repairSweep { 0%, 100% { opacity: .28; transform: translateX(-6%); } 50% { opacity: .9; transform: translateX(6%); } }
@keyframes repairRotate { to { transform: rotate(360deg); } }
@keyframes repairLogoPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
@keyframes repairBeam { 0%, 100% { opacity: .28; filter: drop-shadow(0 0 8px rgba(99,164,255,.38)); } 50% { opacity: 1; filter: drop-shadow(0 0 22px rgba(99,164,255,.9)); } }
@keyframes packetRepair {
  0% { left: 28%; top: 32%; opacity: 0; transform: scale(.7); background: #ff5a1f; }
  15% { opacity: 1; }
  48% { left: 50%; top: 50%; background: #ff5a1f; transform: scale(1.2); }
  54% { background: #63a4ff; }
  85% { opacity: 1; }
  100% { left: 72%; top: 32%; opacity: 0; transform: scale(.7); background: #63a4ff; }
}
@keyframes leakFall {
  0% { transform: translateY(-24px); opacity: 0; }
  20% { opacity: .8; }
  100% { transform: translateY(210px); opacity: 0; }
}
@keyframes ctaAura { 0%, 100% { opacity: .52; transform: translateX(-50%) scale(.94); } 50% { opacity: .92; transform: translateX(-50%) scale(1.04); } }
@keyframes ctaFloat { 0%, 100% { filter: drop-shadow(0 0 0 rgba(37,99,235,0)); } 50% { filter: drop-shadow(0 16px 28px rgba(37,99,235,.10)); } }
@keyframes ctaRail { 0%, 100% { transform: translateX(-62%); opacity: .58; } 50% { transform: translateX(0); opacity: 1; } }
@keyframes ctaStepPulse { 0%, 100% { transform: scale(1); box-shadow: 0 10px 24px rgba(37,99,235,.10); } 50% { transform: scale(1.08); box-shadow: 0 14px 34px rgba(37,99,235,.22); } }

@media (max-width: 1180px) {
  h1 {
    max-width: 820px;
    font-size: clamp(44px, 5.5vw, 64px);
  }
  .floating-signal {
    width: 176px;
    min-height: 48px;
    padding: 0 12px;
    font-size: 11.5px;
    border-radius: 14px;
    box-shadow: 0 18px 44px rgba(37, 65, 106, .13), inset 0 1px rgba(255,255,255,.95);
  }
  .s1 { left: 22px; top: 14%; bottom: auto; }
  .s2 { right: 22px; top: 36%; bottom: auto; }
  .s3 { left: 22px; top: 56%; bottom: auto; }
  .s4 { right: 22px; top: 56%; bottom: auto; }
}

@media (max-width: 900px) {
  .links { display: none; }
  .floating-signal { display: none; }
  .integration-strip, .services-grid, .belief, .price-grid, .cta-grid, .cert-grid { grid-template-columns: 1fr; }
  .repair-stage { min-height: auto; display: grid; gap: 18px; padding: 20px; }
  .repair-stage::before, .repair-beam, .repair-packet, .leak-drop { display: none; }
  .repair-zone, .repair-core, .repair-caption { position: static; width: auto; min-height: auto; transform: none; }
  .repair-caption { grid-template-columns: 1fr; }
  .core-visual { min-height: auto; display: grid; gap: 14px; padding: 20px; }
  #coreParticles, .core-ring, .core-line { display: none; }
  .core-card, .core-center, .revenue-pipeline { position: static; transform: none; width: auto; height: auto; border-radius: 18px; }
  .pipeline-rail { grid-template-columns: 1fr; }
  .pipeline-rail::before, .pipeline-rail::after { display: none; }
  .stat-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .wrap { width: min(100% - 28px, 1120px); }
  .nav-shell { width: calc(100% - 20px); top: 10px; }
  .brand span { display: none; }
  .btn { min-height: 44px; padding: 0 16px; font-size: 13px; }
  h1 { font-size: 43px; }
  section { padding: 62px 0; }
}
