/* ============================================================
   RESILIX™ — Cyber recovery & ransomware resilience
   Mirrors the cp.css / cv.css architecture, with a unique
   cobalt + cyber-cyan + alert-red palette.
============================================================ */

:root {
  --rx-ink:        #060912;
  --rx-ink-2:      #0c1224;
  --rx-paper:      #ffffff;
  --rx-paper-2:    #f3f6fc;
  --rx-paper-3:    #e5ecf8;
  --rx-line:       rgba(10, 12, 20, .10);
  --rx-line-soft:  rgba(10, 12, 20, .06);
  --rx-fg-soft:    rgba(10, 12, 20, .62);
  --rx-fg-faint:   rgba(10, 12, 20, .42);

  /* signature colors */
  --rx-cobalt:     #1d6fff;
  --rx-cobalt-deep:#0a3b8c;
  --rx-cyan:       #1d6fff;
  --rx-cyan-deep:  #0096b8;
  --rx-vault:      #36d29a;     /* clean / verified */
  --rx-alert:      #ff4d6d;     /* ransomware / threat */
  --rx-alert-deep: #c41f3e;
  --rx-amber:      #ffb547;

  /* --font-body:       var(--font-mono); */
  --rx-display:    var(--font-display);
  --rx-sans:       var(--font-body);
}

/* ============================================================
   HERO
============================================================ */
.rx-hero {
  position: relative;
  min-height: 100vh;
  background: var(--rx-ink);
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 140px 56px 0;
  height: 100vh;
}
.rx-hero .bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .55;
}
.rx-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(120% 80% at 15% 0%, rgba(29,111,255,.30), transparent 60%),
    radial-gradient(80% 60% at 100% 100%, rgba(54,227,255,.18), transparent 60%),
    linear-gradient(180deg, rgba(6,9,18,.20) 0%, rgba(6,9,18,.55) 55%, rgba(6,9,18,.95) 100%);
}
.rx-hero__inner {
  position: relative;
  z-index: 2;
  /* max-width: 1400px; */
  width: 100%;
  padding-bottom: 80px;
  text-align: center;
  height: inherit;
  align-content: center;
}
.rx-hero__left {/* max-width: 1076px; */}
.rx-hero__title {
  font-family: var(--rx-display);
  font-weight: 500;
  font-size: clamp(56px, 7.4vw, 116px);
  line-height: .98;
  letter-spacing: -.035em;
  color: #fff;
  margin: 24px 0 30px;
}
.rx-hero__title em {
  font-family: var(--rx-display);
  font-style: italic;
  color: var(--rx-cyan);
  font-weight: 500;
}
.rx-hero__mask { display: inline-block; overflow: hidden }
.rx-hero__mask > span { display: inline-block }
.rx-hero__sub {
  font-family: var(--rx-sans) !important;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .8);
  max-width: 620px;
  margin: 0 0 32px;
}
.rx-hero__ctas {display: flex;gap: 14px;flex-wrap: wrap;justify-content: center;}
.rx-cta-primary {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--rx-cobalt);
    color: #ffffff;
    font-family: var(--rx-display);
    font-weight: 400;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
    text-decoration: none;
opacity: 1 !important;
    /* border: 2px solid rgba(255,255,255,.25); */
    border-radius: 999px;
    outline: none;
    cursor: pointer;

    /* box-shadow: 0 10px 20px rgba(0,0,0,.2); */
    transition: all .3s ease-in-out;
}

.rx-cta-primary:hover {
    transform: translateY(-2px) scale(1.05);
    background: var(--rx-cobalt-deep);
    color: #ffffff;
}

/* Shine overlay */
.rx-cta-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100px;
    width: 100px;
    height: 100%;
    opacity: .6;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 30%,
        rgba(255,255,255,.8),
        rgba(255,255,255,0) 70%
    );
}

/* Shine animation */
.rx-cta-primary:hover::before {
    animation: shine 1.5s ease-out infinite;
}

@keyframes shine {
    0% {
        left: -100px;
    }
    60%, 100% {
        left: 100%;
    }
}
.rx-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: #fff;
  font-family: var(--rx-display);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.22);
  transition: background .25s ease, border-color .25s ease;
}
.rx-cta-ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.4); color: #fff }

/* hero footer telemetry strip */
.rx-tel-strip {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
  border-top: 1px solid rgba(255,255,255,.10);
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,.7);
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(6,9,18,.45);
  backdrop-filter: blur(10px);
}
.rx-tel-strip span { display: inline-flex; align-items: center; gap: 8px }
.rx-tel-strip .pill {
  padding: 4px 9px; border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px; font-size: 10px;
  color: var(--rx-cyan);
}

/* hero tag */
.rx-hero__inner .hero-tag {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 8px 14px; 
  /* border: 1px solid rgba(255,255,255,.24); */
  /* border-radius: 999px; */
  font-family: var(--font-body); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: #fff;
  /* background: rgba(255,255,255,.04); backdrop-filter: blur(8px); */
}
/* .rx-hero__inner .hero-tag span {
  display: inline-block !important;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--rx-cyan);
  box-shadow: 0 0 0 0 rgba(54,227,255,.6);
  animation: rxPulse 1.8s ease-out infinite;
}
@keyframes rxPulse {
  0% { box-shadow: 0 0 0 0 rgba(54,227,255,.55) }
  100% { box-shadow: 0 0 0 12px rgba(54,227,255,0) }
} */

/* ============================================================
   SHARED SECTION HEADERS
============================================================ */
.rx-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rx-fg-faint);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  display: none;
}
/* .rx-eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--rx-fg-faint);
} */
.rx-h2 {
  font-family: var(--rx-display);
  font-weight: 500;
  font-size: clamp(40px, 4.4vw, 76px);
  line-height: 1;
  letter-spacing: -.035em;
  color: #0a0c14;
  margin: 18px 0 0;
}
.rx-h2 em {
  font-family: var(--rx-display);
  font-style: italic;
  color: var(--rx-cobalt);
}

/* ============================================================
   SECTION 01 — Positioning / The threat shift
============================================================ */
.rx-shift {
  padding: 140px 56px;
  background: var(--rx-paper);
  border-bottom: 1px solid var(--rx-line);
  position: relative;
}
.rx-shift__inner { max-width: 1240px; margin: 0 auto }
.rx-shift__head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: end; margin-bottom: 72px;
}
.rx-shift__head p {
  font-family: var(--rx-sans);
  font-size: 18px; line-height: 1.65; color: var(--rx-fg-soft);
  max-width: 520px; margin: 0;
}
.rx-shift__outcomes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  margin-bottom: 64px;
}
.rx-shift__outcomes .item {
  padding: 26px 28px;
  border: 1px solid var(--rx-line);
  border-radius: 18px;
  background: var(--rx-paper);
  transition: transform .35s ease, border-color .25s ease;
}
.rx-shift__outcomes .item:hover {
  transform: translateY(-3px);
  border-color: rgba(29,111,255,.4);
}
.rx-shift__outcomes .item .k {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rx-fg-faint);
  margin-bottom: 16px;
  display: none;
}
.rx-shift__outcomes .item .k::before {
  content: ""; width: 22px; height: 1px;
  background: var(--rx-fg-faint);
}
.rx-shift__outcomes .item .v {
  font-family: var(--rx-display); font-weight: 500;
  font-size: 24px; color: #0a0c14; letter-spacing: -.018em;
  line-height: 1.2;
}
.rx-shift__outcomes .item .v em {
  color: var(--rx-cobalt); font-style: italic;
}

/* Threat ledger */
.rx-shift__ledger {
  position: relative;
  background:
    radial-gradient(120% 60% at 0% 0%, rgba(255, 77, 109, .04), transparent 60%),
    radial-gradient(120% 60% at 100% 100%, rgba(29, 111, 255, .05), transparent 60%),
    #ffffff;
  border: 1px solid var(--rx-line);
  border-radius: 10px;
  overflow: hidden;
}
.rx-shift__legend {
  display: grid;
  grid-template-columns: 60px 1fr 80px 1fr;
  gap: 24px;
  padding: 22px 36px;
  border-bottom: 1px solid var(--rx-line);
  background: rgba(245,247,252,.6);
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rx-fg-faint);
  align-items: center;
}
.rx-shift__legend .from { color: var(--rx-alert) }
.rx-shift__legend .from::before {
  content: ""; display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: var(--rx-alert);
  vertical-align: middle; margin-right: 10px;
}
.rx-shift__legend .arrow { text-align: center; color: var(--rx-fg-faint); font-size: 14px }
.rx-shift__legend .to::before {
  content: ""; display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: var(--rx-cobalt);
  vertical-align: middle; margin-right: 10px;
  box-shadow: 0 0 8px rgba(29,111,255,.6);
}
.rx-shift__row {
  display: grid;
  grid-template-columns: 60px 1fr 80px 1fr;
  gap: 24px;
  padding: 28px 36px;
  align-items: center;
  border-bottom: 1px solid var(--rx-line);
  transition: background .35s ease;
}
.rx-shift__row:last-child { border-bottom: none }
.rx-shift__row:hover { background: rgba(245,247,252,.55) }
.rx-shift__row .ix {
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: .14em; color: var(--rx-fg-faint);
}
.rx-shift__row .from {
  font-family: var(--rx-sans); font-size: 16px; line-height: 1.5;
  color: var(--rx-fg-soft);
  text-decoration: line-through;
  text-decoration-color: rgba(255,77,109,.45);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  transition: opacity .3s ease;
}
.rx-shift__row:hover .from { opacity: .55 }
.rx-shift__row .arrow {
  position: relative; height: 1px;
  background: linear-gradient(90deg, rgba(29,111,255,.25), var(--rx-line) 45%, rgba(29,111,255,.7));
  align-self: center;
}
.rx-shift__row .arrow::after {
  content: ""; position: absolute; right: -4px; top: 50%;
  width: 0; height: 0; border-style: solid;
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent var(--rx-cobalt);
  transform: translateY(-50%);
}
.rx-shift__row .to {
  font-family: var(--font-body); font-weight: 500;
  font-size: 16px; line-height: 1.5;
  letter-spacing: -.012em;
  color: #0a0c14;
  display: flex; align-items: center; gap: 14px;
}
.rx-shift__row .ck {
  flex-shrink: 0; width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--rx-cobalt);
  color: #fff; display: grid; place-items: center;
  font-size: 13px; font-weight: 700;
  transition: box-shadow .35s ease;
}
.rx-shift__row:hover .ck {
  box-shadow: 0 0 0 6px rgba(29,111,255,.18);
}

.rx-shift__sign {
  display: grid; grid-template-columns: 1fr auto; gap: 36px;
  align-items: center; padding: 26px 36px;
  background: #ffffff; border-top: 1px solid var(--rx-line);
}
.rx-shift__sign p {
  font-family: var(--rx-display); font-weight: 400;
  font-size: 20px; line-height: 1.35;
  letter-spacing: -.012em; margin: 0;
  color: #0a0c14;
}
.rx-shift__sign p em { color: var(--rx-cobalt); font-style: italic }
.rx-shift__sign .meta {
  font-family: var(--font-body); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--rx-fg-faint);
  display: inline-flex; align-items: center; gap: 12px;
  white-space: nowrap;
}
.rx-shift__sign .meta::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--rx-cobalt);
  box-shadow: 0 0 8px var(--rx-cobalt);
}

/* ============================================================
   SECTION 02 — Five Pillars (Vault, Rewind, Replicator, Validate, Recover)
============================================================ */
.rx-pillars {
  padding: 160px 56px;
  background: var(--rx-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.rx-pillars::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(50% 35% at 12% 0%, rgba(29,111,255,.18), transparent 70%),
    radial-gradient(40% 30% at 90% 100%, rgba(54,227,255,.10), transparent 70%);
  pointer-events: none;
}
.rx-pillars__inner { position: relative; max-width: 1400px; margin: 0 auto }
.rx-pillars__head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 80px;
}
.rx-pillars__head .rx-h2 { color: #fff }
.rx-pillars__head .rx-h2 em {/* color: var(--rx-cyan); */}
.rx-pillars__head .rx-eyebrow { color: rgba(255,255,255,.55) }
.rx-pillars__head .rx-eyebrow::before { background: rgba(255,255,255,.4) }
.rx-pillars__head p {
  font-family: var(--rx-sans); font-size: 18px; line-height: 1.65;
  color: rgba(255,255,255,.7); max-width: 480px; margin: 0;
}

.rx-pillars__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.rx-pillar {
  position: relative;
  padding: 36px 32px 32px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform .5s cubic-bezier(.22,.61,.36,1),
              border-color .3s ease,
              background .3s ease;
}
.rx-pillar::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 0px;
  background: var(--rx-cobalt);
  transform: scaleY(0); transform-origin: top;
  transition: transform .55s cubic-bezier(.16,1,.3,1);
}
.rx-pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(54,227,255,.32);
  background: linear-gradient(180deg, rgba(54,227,255,.05), rgba(255,255,255,.02));
}
.rx-pillar:hover::before { transform: scaleY(1) }
.rx-pillar--featured { grid-row: 1 / 3 }
.rx-pillar--featured .rx-pillar__name { font-size: 48px }
.rx-pillar--featured::after {
  content: "";
  position: absolute; right: -120px; bottom: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,111,255,.22), transparent 65%);
  pointer-events: none;
}
.rx-pillar__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}
.rx-pillar__num {
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: .22em; color: rgba(255,255,255,.5);
  text-transform: uppercase;
}
.rx-pillar__chip {
  font-family: var(--font-body); font-size: 10px;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--rx-cyan);
  padding: 5px 10px;
  border: 1px solid rgba(54,227,255,.32);
  border-radius: 999px;
  background: rgba(54,227,255,.06);
}
.rx-pillar__glyph {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--rx-cobalt), var(--rx-cobalt-deep));
  display: grid; place-items: center;
  color: #fff;
  margin-bottom: 22px;
  box-shadow: 0 12px 28px -10px rgba(29,111,255,.55);
  transition: transform .45s ease;
  position: relative;
  overflow: hidden;
}
.rx-pillar__glyph::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 28% 28%, rgba(255,255,255,.35), transparent 55%);
}
.rx-pillar:hover .rx-pillar__glyph { transform: scale(1.05) rotate(-4deg) }
.rx-pillar__name {
  font-family: var(--rx-display); font-weight: 500;
  font-size: 32px; letter-spacing: -.02em;
  color: #fff; margin: 0 0 8px;
}
.rx-pillar__name sup {
  font-family: var(--font-body); font-size: .35em;
  color: var(--rx-cyan); font-weight: 400;
  margin-left: 4px; top: -1em;
}
.rx-pillar__desc {
  font-family: var(--rx-sans);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,.72);
  margin: 0;
  max-width: 40ch;
}
.rx-pillar__tags {
  margin-top: 22px;
  display: flex; flex-wrap: wrap; gap: 7px;
}
.rx-pillar__tags span {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 5px 11px;
  background: rgba(255,255,255,.03);
}

/* Variant accents */
.rx-pillar.is-vault .rx-pillar__glyph    { background: linear-gradient(135deg, var(--rx-cobalt),     var(--rx-cobalt-deep)) }
.rx-pillar.is-rewind .rx-pillar__glyph   { background: linear-gradient(135deg, #7b5cff,              #4d35c4) }
.rx-pillar.is-replicator .rx-pillar__glyph { background: linear-gradient(135deg, var(--rx-cyan),     var(--rx-cyan-deep)) }
.rx-pillar.is-validate .rx-pillar__glyph { background: linear-gradient(135deg, var(--rx-vault),      #15a36e) }
.rx-pillar.is-recover .rx-pillar__glyph  { background: linear-gradient(135deg, var(--rx-amber),      #cc841a) }

.rx-pillar.is-vault::before     { background: var(--rx-cobalt) }
.rx-pillar.is-rewind::before    { background: #7b5cff }
.rx-pillar.is-replicator::before{ background: var(--rx-cyan) }
.rx-pillar.is-validate::before  { background: var(--rx-vault) }
.rx-pillar.is-recover::before   { background: var(--rx-amber) }

/* ============================================================
   SECTION 03 — Capabilities grid (cards)
============================================================ */
.rx-caps {
  padding: 160px 56px;
  background: var(--rx-paper);
  border-bottom: 1px solid var(--rx-line);
}
.rx-caps__inner { max-width: 1400px; margin: 0 auto }
.rx-caps__head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 60px;
}
.rx-caps__head p {
  font-family: var(--rx-sans);
  font-size: 18px; line-height: 1.65; color: var(--rx-fg-soft);
  max-width: 480px; margin: 0;
}
.rx-caps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.rx-cap {
  position: relative;
  isolation: isolate;
  border: 1px solid var(--rx-line);
  background: linear-gradient(180deg, var(--rx-paper), var(--rx-paper-2));
  border-radius: 20px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
  min-height: 280px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 15, 20, .04);
  transition: transform .55s cubic-bezier(.16,1,.3,1),
              border-color .35s ease,
              box-shadow .35s ease;
}
.rx-cap::after {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  border-radius: 50%;
  pointer-events: none; z-index: 0;
  left: var(--mx, 50%); top: var(--my, 50%);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(29, 111, 255, .22), transparent 65%);
  opacity: 0;
  transition: opacity .4s ease;
}
.rx-cap > * { position: relative; z-index: 1 }
.rx-cap:hover {
  border-color: rgba(29, 111, 255, .45);
  box-shadow: 0 26px 56px -30px rgba(10, 40, 100, .28),
              0 0 0 1px rgba(29, 111, 255, .14);
  transform: translateY(-6px);
}
.rx-cap:hover::after { opacity: 1 }
.rx-cap__num {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .3em;
  color: rgb(10 12 20 / 94%);
  text-transform: uppercase;
}
.rx-cap__glyph {
  position: absolute;
  top: 24px; right: 24px;
  width: 40px; height: 40px;
  border-radius: 13px;
  background: #0a0c14;
  display: grid; place-items: center;
  color: #fff;
  font-size: 17px;
  box-shadow: 0 4px 12px rgba(15, 15, 20, .12);
  transition: transform .55s cubic-bezier(.16,1,.3,1),
              background .4s ease,
              color .4s ease;
  z-index: 2;
}
.rx-cap:hover .rx-cap__glyph {
  transform: rotate(180deg) scale(1.12);
  background: var(--rx-cobalt);
  color: #fff;
  box-shadow: 0 8px 22px rgba(29, 111, 255, .35);
}
.rx-cap__title {
  font-family: var(--rx-display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 24px);
  letter-spacing: -.015em;
  color: #0a0c14;
  margin: auto 0 12px;
  line-height: 1.15;
  transition: transform .5s ease;
}
.rx-cap:hover .rx-cap__title { transform: translateX(4px) }
.rx-cap__desc {
  font-family: var(--rx-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--rx-fg-soft);
  max-width: 46ch;
  margin: 0;
}
.rx-cap__tags {
  margin-top: 18px;
  display: flex; flex-wrap: wrap; gap: 7px;
}
.rx-cap__tags span {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgb(10 12 20 / 75%);
  border: 1px solid var(--rx-line);
  border-radius: 999px;
  padding: 5px 11px;
  background: rgba(0, 0, 0, .015);
}
.rx-cap--featured {
  background:
    radial-gradient(90% 120% at 110% 120%, rgba(29, 111, 255, .10), transparent 55%),
    radial-gradient(80% 90% at -10% -10%, rgba(54, 227, 255, .12), transparent 55%),
    linear-gradient(180deg, #ffffff, #f4f7fc);
}

/* ============================================================
   SECTION 04 — Vault diagram (architecture)
============================================================ */
.rx-arch {
  padding: 160px 56px;
  background: var(--rx-paper-2);
  border-bottom: 1px solid var(--rx-line);
  position: relative;
  overflow: hidden;
}
.rx-arch__inner { max-width: 1400px; margin: 0 auto; position: relative }
.rx-arch__head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 70px;
}
.rx-arch__head p {
  font-family: var(--rx-sans); font-size: 18px; line-height: 1.65;
  color: var(--rx-fg-soft); max-width: 480px; margin: 0;
}

.rx-arch__diagram {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
.rx-arch__zone {
  position: relative;
  background: var(--rx-paper);
  border: 1px solid var(--rx-line);
  border-radius: 18px;
  padding: 28px 26px;
  min-height: 320px;
}
.rx-arch__zone .label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgb(10 12 20 / 75%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.rx-arch__zone .label::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--rx-fg-faint);
}
.rx-arch__zone.is-production .label::before { background: var(--rx-alert); box-shadow: 0 0 6px var(--rx-alert) }
.rx-arch__zone.is-bridge .label::before    { background: var(--rx-amber); box-shadow: 0 0 6px var(--rx-amber) }
.rx-arch__zone.is-vault .label::before     { background: var(--rx-vault); box-shadow: 0 0 6px var(--rx-vault) }
.rx-arch__zone h3 {
  font-family: var(--rx-display); font-weight: 500;
  font-size: 22px; color: #0a0c14;
  letter-spacing: -.015em; margin: 0 0 8px;
}
.rx-arch__zone h3 em { color: var(--rx-cobalt); font-style: italic }
.rx-arch__zone p {
  font-family: var(--rx-sans);
  font-size: 15px;
  line-height: 1.55;
  color: rgb(10 12 20 / 72%);
  margin: 0 0 20px;
}
.rx-arch__nodes {
  display: grid; gap: 8px;
}
.rx-arch__node {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--rx-paper-2);
  border: 1px solid var(--rx-line-soft);
  border-radius: 12px;
  font-family: var(--rx-sans);
  font-size: 15px;
  color: #0a0c14;
}
.rx-arch__node .ic {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid; place-items: center;
  background: #0a0c14; color: #fff;
  font-family: var(--font-body); font-size: 11px;
}
.rx-arch__node .tag {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgb(10 12 20 / 74%);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.rx-arch__zone.is-vault {
  background: linear-gradient(180deg, #ffffff, #f0fff8);
  border-color: rgba(54,210,154,.28);
}
.rx-arch__zone.is-vault .rx-arch__node .ic { background: var(--rx-vault) }
.rx-arch__zone.is-production {
  background: linear-gradient(180deg, #ffffff, #fff3f5);
  border-color: rgba(255,77,109,.22);
}
.rx-arch__zone.is-production .rx-arch__node .ic { background: var(--rx-alert) }
.rx-arch__zone.is-bridge .rx-arch__node .ic { background: var(--rx-amber); color: #0a0c14 }

.rx-arch__note {
margin-top: 56px;
    padding: 28px 36px;
    background: #0a0c14;
    color: #fff;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    text-align: center;

}

.rx-arch__note p {position: relative;z-index: 2;font-family: var(--cv-display);font-weight: 300;font-size: 20px;line-height: 1.35;letter-spacing: -.012em
-0.264px;margin: 0;color: rgb(255 255 255);}

/* ============================================================
   SECTION 05 — Recovery flow (sequence)
============================================================ */
.rx-flow {
  padding: 160px 56px;
  background: var(--rx-paper);
  border-bottom: 1px solid var(--rx-line);
}
.rx-flow__inner { max-width: 1400px; margin: 0 auto }
.rx-flow__head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 70px;
}
.rx-flow__head p {
  font-family: var(--rx-sans); font-size: 18px; line-height: 1.65;
  color: var(--rx-fg-soft); max-width: 480px; margin: 0;
}
.rx-flow__steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
}
.rx-flow__steps::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 38px;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--rx-cobalt) 0 6px, transparent 6px 12px);
  opacity: .35;
  z-index: 0;
}
.rx-flow__step {
  position: relative;
  background: var(--rx-paper);
  border: 1px solid var(--rx-line);
  border-radius: 18px;
  padding: 24px 22px 26px;
  transition: transform .35s ease, border-color .25s ease, box-shadow .25s ease;
}
.rx-flow__step:hover {
  transform: translateY(-4px);
  border-color: rgba(29,111,255,.35);
  box-shadow: 0 18px 40px -22px rgba(10, 40, 100, .25);
}
.rx-flow__num {
  position: relative; z-index: 1;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #0a0c14; color: #fff;
  display: grid; place-items: center;
  font-family: var(--rx-display); font-weight: 500;
  font-size: 18px;
  margin-bottom: 18px;
  box-shadow: 0 0 0 6px rgba(29,111,255,.10);
}
.rx-flow__step:nth-child(1) .rx-flow__num { background: var(--rx-cobalt) }
.rx-flow__step:nth-child(2) .rx-flow__num { background: #7b5cff }
.rx-flow__step:nth-child(3) .rx-flow__num { background: var(--rx-cyan-deep) }
.rx-flow__step:nth-child(4) .rx-flow__num { background: var(--rx-vault); color: #0a0c14 }
.rx-flow__step:nth-child(5) .rx-flow__num { background: var(--rx-amber); color: #0a0c14 }

.rx-flow__title {
  font-family: var(--rx-display); font-weight: 500;
  font-size: 18px; color: #0a0c14;
  margin: 0 0 8px; letter-spacing: -.012em;
}
.rx-flow__desc {
  font-family: var(--rx-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--rx-fg-soft);
  margin: 0;
}
.rx-flow__tag {
  margin-top: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body);
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--rx-cobalt);
}
.rx-flow__tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--rx-cobalt);
}

/* ============================================================
   SECTION 06 — Workspace mockup (dashboard preview)
============================================================ */
.rx-workspace {
  padding: 160px 56px;
  background: var(--rx-paper-2);
  border-bottom: 1px solid var(--rx-line);
}
.rx-workspace__inner { max-width: 1400px; margin: 0 auto }
.rx-workspace__head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 50px;
}
.rx-workspace__head p {
  font-family: var(--rx-sans); font-size: 18px; line-height: 1.65;
  color: var(--rx-fg-soft); max-width: 480px; margin: 0;
}
.rx-workspace__image {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--rx-line);
  background: #fff;
  box-shadow: 0 30px 80px -40px rgba(10, 12, 20, .35);
}
.rx-workspace__image img {
  width: 100%; height: auto; display: block;
}

/* ============================================================
   SECTION 07 — Outcomes
============================================================ */
.rx-outcomes {
  padding: 160px 56px;
  background: #f4f6fb;
}
.rx-outcomes__inner { max-width: 1400px; margin: 0 auto }
.rx-outcomes__head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 60px;
}
.rx-outcomes__head p {
  font-family: var(--rx-sans); font-size: 18px; line-height: 1.65;
  color: var(--rx-fg-soft); max-width: 480px; margin: 0;
}
.rx-outcomes__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--rx-line);
  border: 1px solid var(--rx-line);
  border-radius: 24px; overflow: hidden;
}
.rx-outcome {
  background: var(--rx-paper);
  padding: 44px 36px 36px;
  position: relative; overflow: hidden;
  transition: background .3s ease;
}
.rx-outcome:hover { background: #fff }
.rx-outcome__num {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(48px, 5vw, 76px);
  line-height: .95;
  letter-spacing: -.04em;
  color: #0a0c14;
  margin: 0 0 18px;
}
.rx-outcome__num .u {
  font-family: var(--font-body);
  font-size: .26em;
  color: var(--rx-fg-soft);
  margin-left: 6px;
  font-weight: 400;
  letter-spacing: .04em;
  vertical-align: middle;
}
.rx-outcome__label {
  font-family: var(--rx-display); font-weight: 500;
  font-size: 18px; color: #0a0c14; margin: 0 0 6px;
  letter-spacing: -.01em;
}
.rx-outcome__desc {
  font-family: var(--rx-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--rx-fg-soft);
  margin: 0;
}
.rx-outcome::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.rx-outcome:nth-child(1)::before { background: var(--rx-cobalt) }
.rx-outcome:nth-child(2)::before { background: var(--rx-cyan) }
.rx-outcome:nth-child(3)::before { background: var(--rx-vault) }
.rx-outcome:nth-child(4)::before { background: #7b5cff }
.rx-outcome:nth-child(5)::before { background: var(--rx-amber) }
.rx-outcome:nth-child(6)::before { background: var(--rx-alert) }
.rx-outcome:hover::before { transform: scaleX(1) }
.rx-outcome__index {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: .18em;
  color: rgb(10 12 20 / 79%);
}

/* ============================================================
   SECTION 08 — Industries
============================================================ */
.rx-industries {
  padding: 140px 56px;
  background: var(--rx-paper);
  border-bottom: 1px solid var(--rx-line);
  position: relative; overflow: hidden;
}
.rx-industries__inner { max-width: 1400px; margin: 0 auto; position: relative; z-index: 2 }
.rx-industries__head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: end; margin-bottom: 60px;
}
.rx-industries__head p {
  font-family: var(--rx-sans); font-size: 18px; line-height: 1.65;
  color: var(--rx-fg-soft); max-width: 480px; margin: 0;
}
.rx-industries__cloud {
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: flex-start;
}
.rx-industries__cloud a {
  /* display: inline-flex; */
  /* align-items: center; */
  text-align: center;
  padding: 8px 14px;
  border: 1px solid var(--rx-line);
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: #0a0c14;
  text-decoration: none;
  background: var(--rx-paper);
  transition: transform .35s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.rx-industries__cloud a:hover {
  background: #0a0c14;
  color: #fff;
  border-color: #0a0c14;
  transform: translateY(-2px);
}
.rx-industries__cloud a .ix {
  font-family: var(--font-body); font-size: 10px;
  letter-spacing: .12em; color: var(--rx-fg-faint);
}
.rx-industries__cloud a:hover .ix { color: rgba(255,255,255,.65) }
.rx-industries__map {
  position: absolute; right: -120px; top: 50%;
  transform: translateY(-50%);
  width: 720px; height: 720px;
  background-image:
    radial-gradient(circle at center, rgba(29,111,255,.07) 1px, transparent 1.4px);
  background-size: 14px 14px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  pointer-events: none; opacity: .9; z-index: 1;
}

/* ============================================================
   FINAL CTA
============================================================ */
.rx-final {
  position: relative; overflow: hidden;
  padding: 180px 40px;
  background: var(--rx-ink); color: #fff;
  text-align: center;
}
.rx-final::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(29,111,255,.20), transparent 70%),
    radial-gradient(40% 30% at 50% 100%, rgba(54,227,255,.10), transparent 70%);
  pointer-events: none;
}
.rx-final .orbit {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%; pointer-events: none;
}
.rx-final .orbit::before {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit; padding: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.02), rgba(54,227,255,.85), rgba(255,255,255,.02));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .7;
}
.rx-final .orbit1 {
  width: clamp(220px, 28vw, 340px);
  height: clamp(220px, 28vw, 340px);
  animation: rxFinalOrbit 22s linear infinite;
}
.rx-final .orbit2 {
  width: clamp(320px, 42vw, 500px);
  height: clamp(320px, 42vw, 500px);
  animation: rxFinalOrbit 38s linear infinite reverse;
}
@keyframes rxFinalOrbit { to { transform: translate(-50%,-50%) rotate(360deg) } }
.rx-final__eyebrow {
  position: relative;
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase;
  margin-bottom: 28px;
}
.rx-final__title {
  position: relative;
  font-family: var(--rx-display); font-weight: 500;
  font-size: clamp(48px, 8.5vw, 60px);
  line-height: 1.05; letter-spacing: -.02em;
  color: #fff; margin: 0 0 48px;
}

.rx-final__btns {
  position: relative;
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* ============================================================
   FOOTER (verbatim shared)
============================================================ */
footer {
  background: #ffffff;
  color: #0a0c14;
  padding: 32px 56px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  border-top: 1px solid var(--rx-line);
}
footer .footer-links { display: flex; gap: 22px }
footer a { color: var(--rx-fg-soft); text-decoration: none; transition: color .2s }
footer a:hover { color: var(--rx-cobalt) }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .rx-hero { padding: 120px 32px 0 }
  .rx-hero__inner { padding-bottom: 50px }
  .rx-shift,
  .rx-pillars,
  .rx-caps,
  .rx-arch,
  .rx-flow,
  .rx-workspace,
  .rx-outcomes,
  .rx-industries { padding: 100px 32px }
  .rx-shift__head,
  .rx-pillars__head,
  .rx-caps__head,
  .rx-arch__head,
  .rx-flow__head,
  .rx-workspace__head,
  .rx-outcomes__head,
  .rx-industries__head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px }
  .rx-shift__outcomes { grid-template-columns: 1fr }
  .rx-shift__legend { grid-template-columns: 40px 1fr; gap: 16px; padding: 16px 22px }
  .rx-shift__legend .arrow, .rx-shift__legend .to { display: none }
  .rx-shift__row {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto auto auto;
    gap: 6px 16px; padding: 22px 22px;
  }
  .rx-shift__row .ix { grid-row: 1 / 4 }
  .rx-shift__row .from { grid-column: 2 }
  .rx-shift__row .arrow {
    grid-column: 2; width: 24px; height: 14px;
    background: none; position: relative;
  }
  .rx-shift__row .arrow::before {
    content: "↓"; color: var(--rx-fg-faint); font-size: 14px;
  }
  .rx-shift__row .arrow::after { display: none }
  .rx-shift__row .to { grid-column: 2; font-size: 16.5px }
  .rx-shift__sign { grid-template-columns: 1fr; gap: 14px; padding: 22px }

  .rx-pillars__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .rx-pillar--featured { grid-row: auto; grid-column: 1 / -1 }

  .rx-caps__grid { grid-template-columns: 1fr 1fr }

  .rx-arch__diagram { grid-template-columns: 1fr; gap: 14px }
  .rx-arch__note { flex-direction: column; align-items: flex-start; gap: 12px }

  .rx-flow__steps {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .rx-flow__steps::before { display: none }

  .rx-outcomes__grid { grid-template-columns: 1fr 1fr }
  .rx-industries__map { display: none }
  .rx-final { padding: 130px 28px }
  /* .rx-tel-strip { display: none } */
}

@media (max-width: 768px) {
  /* ---- RX HERO ----
     The hero is locked to height/min-height: 100vh on desktop. On
     mobile we let it size to its content (min-height: 100svh so the
     viewport's "small" height is respected on iOS) and tighten
     padding. The h1 carries the global .hero-title which is forced
     to clamp(60px,10vw,80px) !important in common.css — we override
     with !important so the title actually scales for phones. */
  .rx-hero {
    height: auto !important;
    min-height: 100svh;
    padding: 110px 22px 0 !important;
    justify-content: center;
  }
  .rx-hero__inner {
    padding-bottom: 60px;
    text-align: center;
    height: auto;
  }
  .rx-hero__left { width: 100%; }

  .rx-hero .hero-title {
    font-size: clamp(34px, 9vw, 50px) !important;
    line-height: 1.06 !important;
    letter-spacing: -.025em !important;
    margin: 18px 0 22px !important;
    word-break: break-word;
  }
  .rx-hero .hero-title .line { display: block; }
  .rx-hero .hero-title em.mx-2 {
    margin-left: 6px !important;
    margin-right: 6px !important;
    display: inline-block;
  }

  .rx-hero .hero-bottom { margin: 0; }
  .rx-hero .hero-bottom .desc,
  .rx-hero #heroDesc {
    font-size: 14.5px !important;
    line-height: 1.6;
    max-width: 100%;
    padding: 0 4px;
    margin: 0 auto;
  }

  .rx-hero__inner .hero-tag {
    font-size: 10.5px;
    letter-spacing: .12em;
    line-height: 1.45;
    padding: 8px 12px;
    white-space: normal;
    max-width: 100%;
    margin: 0 auto;
  }

  .rx-hero__ctas {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 18px auto 0;
    gap: 12px;
  }
  .rx-hero__ctas .rx-cta-primary,
  .rx-hero__ctas .rx-cta-ghost,
  .rx-hero__ctas > a {
    width: 100%;
    justify-content: center;
    padding: 12px 22px;
  }
}

@media (max-width: 600px) {
  .rx-hero { padding: 100px 20px 0 !important }
  .rx-hero .hero-title {
    font-size: clamp(30px, 10vw, 42px) !important;
  }
  .rx-shift,
  .rx-pillars,
  .rx-caps,
  .rx-arch,
  .rx-flow,
  .rx-workspace,
  .rx-outcomes,
  .rx-industries { padding: 80px 20px }
  .rx-final { padding: 110px 22px }

  .rx-pillars__grid { grid-template-columns: 1fr }
  .rx-pillar--featured .rx-pillar__name { font-size: 38px }
  .rx-caps__grid,
  .rx-outcomes__grid { grid-template-columns: 1fr }
  .rx-flow__steps { grid-template-columns: 1fr }

  footer {
    flex-direction: column; gap: 14px;
    padding: 24px 20px; text-align: center;
  }
}

@media (max-width: 380px) {
  .rx-hero { padding: 96px 16px 0 !important; }
  .rx-hero .hero-title {
    font-size: clamp(26px, 10.5vw, 36px) !important;
    letter-spacing: -.015em !important;
  }
  .rx-hero .hero-bottom .desc,
  .rx-hero #heroDesc { font-size: 13.5px !important; }
  .rx-hero__inner .hero-tag { font-size: 10px; }
}
