:root {
  --rx-primary: #22d4e8;
  --rx-secondary: #0797b4;
  --rx-accent: #ff7a00;
  --rx-success: #35d07f;
  --rx-bg: #020304;
  --rx-panel: #0d1217;
  --rx-panel-strong: #111922;
  --rx-line: rgba(255, 255, 255, 0.12);
  --rx-line-strong: rgba(255, 255, 255, 0.22);
  --rx-text: #f5f7fb;
  --rx-muted: #9aa7b4;
  --rx-dim: #65727e;
  --rx-heading-font: "Bricolage Grotesque", "Aptos Display", "Segoe UI Variable Display", Arial, sans-serif;
  --rx-body-font: "Plus Jakarta Sans", Aptos, "Segoe UI Variable Text", Arial, sans-serif;
  --rx-shadow: 0 34px 100px rgba(0, 0, 0, 0.44);
  color-scheme: dark;
  font-family: var(--rx-body-font);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--rx-bg);
}

body {
  min-width: 320px;
  margin: 0;
  background:
    linear-gradient(115deg, rgba(34, 212, 232, 0.08), transparent 32%, rgba(255, 122, 0, 0.09) 66%, transparent),
    linear-gradient(180deg, #020304, #071016 42%, #020304);
  color: var(--rx-text);
  font-family: var(--rx-body-font);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(180deg, #000, transparent 78%);
  pointer-events: none;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.rx-header {
  position: relative;
  z-index: 20;
  width: min(1060px, calc(100% - 32px));
  margin: 18px auto 0;
}

.rx-header-inner {
  min-height: 66px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  border: 1px solid var(--rx-line);
  border-radius: 999px;
  padding: 0 18px 0 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(2, 3, 4, 0.82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.rx-brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.rx-brand img {
  width: 138px;
  height: auto;
}

.rx-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
}

.rx-header nav a,
.rx-header-cta,
.rx-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 850;
}

.rx-header nav a {
  color: #c8d5dc;
}

.rx-header nav a:hover {
  color: var(--rx-primary);
}

.rx-header-cta {
  justify-self: end;
  border: 1px solid rgba(255, 122, 0, 0.42);
  border-radius: 16px;
  padding: 0 22px;
  background: linear-gradient(180deg, #ffb35f, #ff7a00 56%, #d85d00);
  color: #130903;
}

.rx-page {
  overflow: hidden;
}

.rx-hero {
  position: relative;
  width: min(1280px, calc(100% - 48px));
  min-height: min(700px, calc(100svh - 108px));
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(390px, 0.72fr);
  align-items: center;
  gap: clamp(30px, 4.5vw, 70px);
  margin: -72px auto 0;
  padding: 142px clamp(26px, 4vw, 58px) 54px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-top: 0;
  border-radius: 0 0 28px 28px;
  background:
    linear-gradient(120deg, rgba(34, 212, 232, 0.13), transparent 36%, rgba(255, 122, 0, 0.14) 72%, transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.012)),
    #030405;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08), 0 40px 120px rgba(0, 0, 0, 0.42);
}

.rx-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(180deg, #000 0 48%, transparent 92%);
  pointer-events: none;
}

.rx-hero-copy,
.rx-hero-system {
  position: relative;
  z-index: 1;
}

.rx-label {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  margin: 0;
  border: 1px solid var(--rx-line);
  border-radius: 999px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.045);
  color: #b8c3ca;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rx-hero h1,
.rx-diagnostic-copy h2,
.rx-section-head h2 {
  margin: 22px 0 0;
  color: var(--rx-text);
  font-family: var(--rx-heading-font);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

.rx-hero h1 {
  max-width: 760px;
  font-size: clamp(3.35rem, 5vw, 5.3rem);
}

.rx-hero-text,
.rx-diagnostic-copy p,
.rx-section-head p:not(.rx-label),
.rx-path-grid p,
.rx-contact-panel p,
.rx-form-note,
.rx-result-body {
  color: var(--rx-muted);
  line-height: 1.65;
}

.rx-hero-text {
  max-width: 650px;
  margin: 20px 0 0;
  font-size: clamp(1rem, 1.18vw, 1.16rem);
}

.rx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.rx-button {
  min-width: 220px;
  border-radius: 16px;
  padding: 0 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.rx-button:hover {
  transform: translateY(-2px);
}

.rx-button-primary {
  border: 1px solid rgba(255, 122, 0, 0.46);
  background: linear-gradient(180deg, #ffb35f, #ff7a00 54%, #d85d00);
  color: #130903;
  box-shadow: 0 24px 60px rgba(255, 122, 0, 0.24);
}

.rx-button-secondary {
  border: 1px solid var(--rx-line-strong);
  background: rgba(255, 255, 255, 0.055);
  color: #dce7eb;
}

.rx-hero-proof,
.rx-mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.rx-hero-proof span,
.rx-mini-proof span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.045);
  color: #d7e2e7;
  font-size: 0.78rem;
  font-weight: 850;
}

.rx-hero-system {
  min-height: 500px;
}

.rx-console {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(7, 11, 15, 0.86);
  box-shadow: var(--rx-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.rx-console::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(34, 212, 232, 0.68), transparent 44%, rgba(255, 122, 0, 0.7));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.rx-console-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.rx-console-top span {
  width: 64px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rx-primary), var(--rx-accent));
  box-shadow: 0 0 24px rgba(34, 212, 232, 0.24);
}

.rx-console-top small,
.rx-floating-card span,
.rx-path-grid span {
  color: var(--rx-primary);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rx-score-preview {
  display: grid;
  justify-items: center;
  margin: 34px 0;
  text-align: center;
}

.rx-score-preview strong {
  color: var(--rx-accent);
  font-family: var(--rx-heading-font);
  font-size: clamp(4.4rem, 8vw, 6.4rem);
  line-height: 0.86;
}

.rx-score-preview span {
  color: var(--rx-dim);
  font-weight: 900;
}

.rx-score-preview p {
  max-width: 300px;
  margin: 12px 0 0;
  color: var(--rx-muted);
}

.rx-scan-list {
  display: grid;
  gap: 12px;
}

.rx-scan-list div {
  display: grid;
  grid-template-columns: 92px 1fr;
  align-items: center;
  gap: 14px;
}

.rx-scan-list b {
  color: #e8f1f4;
  font-size: 0.86rem;
}

.rx-scan-list i {
  height: 10px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(34, 212, 232, 0.85), rgba(255, 122, 0, 0.8)),
    rgba(255, 255, 255, 0.08);
  transform-origin: left;
  transform: scaleX(0.35);
  transition: transform 240ms ease;
}

.rx-floating-card {
  position: absolute;
  right: -20px;
  bottom: 34px;
  width: 250px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.034)),
    rgba(2, 3, 4, 0.88);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.48);
}

.rx-floating-card strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-family: var(--rx-heading-font);
  font-size: 1.35rem;
  line-height: 1.05;
}

.rx-strip {
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
}

.rx-strip article {
  min-height: 118px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 18px;
  text-align: center;
}

.rx-strip article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.rx-strip strong {
  color: var(--rx-accent);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}

.rx-strip span {
  max-width: 300px;
  color: var(--rx-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.rx-diagnostic {
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 0.64fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
  margin: 68px auto 0;
}

.rx-diagnostic-copy {
  position: sticky;
  top: 24px;
}

.rx-diagnostic-copy h2,
.rx-section-head h2 {
  font-size: clamp(2.35rem, 4vw, 3.8rem);
}

.rx-diagnostic-copy p {
  margin: 20px 0 0;
}

.rx-form,
.rx-result {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022)),
    var(--rx-panel);
  box-shadow: var(--rx-shadow);
}

.rx-form {
  display: grid;
  gap: 26px;
}

.rx-contact-panel h3,
.rx-path-grid h3,
.rx-result h3 {
  margin: 0;
  color: var(--rx-text);
  font-family: var(--rx-heading-font);
  font-weight: 850;
  line-height: 1.05;
}

.rx-contact-panel h3 {
  font-size: 1.55rem;
}

.rx-contact-panel p {
  margin: 10px 0 18px;
}

.rx-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.rx-wide-field,
.rx-submit-panel,
.rx-consent,
.rx-form button,
.rx-form-note {
  grid-column: 1 / -1;
}

.rx-form label,
.rx-submit-panel label {
  display: grid;
  gap: 8px;
  color: #e7eef2;
  font-size: 0.84rem;
  font-weight: 850;
}

.rx-form input[type="text"],
.rx-form input[type="email"],
.rx-form input[type="tel"],
.rx-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--rx-line);
  border-radius: 13px;
  padding: 0 15px;
  background: rgba(0, 0, 0, 0.31);
  color: var(--rx-text);
}

.rx-form option {
  color: #101417;
}

.rx-form input::placeholder {
  color: #727f8a;
}

.rx-form input:focus,
.rx-form select:focus,
.rx-option:focus-within {
  outline: 3px solid rgba(255, 122, 0, 0.22);
  border-color: rgba(255, 122, 0, 0.58);
}

.rx-question-panel {
  display: grid;
  gap: 18px;
}

.rx-question-panel fieldset {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.032);
}

.rx-question-panel legend {
  padding: 0 8px;
  color: #f4f7fb;
  font-family: var(--rx-heading-font);
  font-size: 1.16rem;
  font-weight: 850;
  line-height: 1.15;
}

.rx-option {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  min-height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.rx-option:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 212, 232, 0.35);
}

.rx-option input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--rx-accent);
}

.rx-option:has(input:checked) {
  border-color: rgba(255, 122, 0, 0.5);
  background: rgba(255, 122, 0, 0.08);
}

.rx-option strong,
.rx-option small {
  display: block;
}

.rx-option strong {
  color: #fff;
  font-size: 0.96rem;
}

.rx-option small {
  margin-top: 4px;
  color: var(--rx-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.rx-submit-panel {
  display: grid;
  gap: 14px;
}

.rx-consent {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  color: #cfd9de !important;
  font-size: 0.8rem !important;
  line-height: 1.5;
}

.rx-consent input {
  width: 18px;
  min-height: 18px;
  margin: 1px 0 0;
  accent-color: var(--rx-accent);
}

.rx-form button,
.rx-result a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffb35f, #ff7a00 54%, #e86d00);
  color: #130903;
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 20px 44px rgba(255, 122, 0, 0.18);
}

.rx-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.rx-form-note {
  min-height: 22px;
  margin: 0;
  font-size: 0.9rem;
}

.rx-form-note.is-success {
  color: #88f0b5;
}

.rx-form-note.is-error {
  color: #ffb4aa;
}

.rx-result {
  grid-column: 1 / -1;
  display: grid;
  gap: 16px;
  border-color: rgba(53, 208, 127, 0.32);
  background:
    linear-gradient(145deg, rgba(53, 208, 127, 0.1), rgba(255, 255, 255, 0.03)),
    var(--rx-panel-strong);
}

.rx-result[hidden] {
  display: none;
}

.rx-result-score {
  display: flex;
  align-items: end;
  gap: 8px;
}

.rx-result-score strong {
  color: var(--rx-success);
  font-family: var(--rx-heading-font);
  font-size: clamp(3.2rem, 7vw, 5.6rem);
  line-height: 0.86;
}

.rx-result-score span {
  color: var(--rx-dim);
  font-weight: 900;
}

.rx-result p {
  margin: 0;
}

.rx-result h3 {
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.rx-result ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rx-result li {
  position: relative;
  padding-left: 22px;
  color: var(--rx-muted);
  line-height: 1.5;
}

.rx-result li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--rx-success);
}

.rx-honeypot {
  position: absolute;
  left: -10000px;
}

.rx-paths {
  width: min(1120px, calc(100% - 32px));
  margin: 72px auto 80px;
}

.rx-section-head {
  display: grid;
  justify-items: center;
  text-align: center;
}

.rx-section-head h2 {
  max-width: 920px;
}

.rx-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.rx-path-grid article {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rx-line);
  border-radius: 22px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.022)),
    var(--rx-panel);
  box-shadow: var(--rx-shadow);
}

.rx-path-grid h3 {
  margin-top: 20px;
  font-size: 1.45rem;
}

.rx-path-grid p {
  margin: 14px 0 20px;
}

.rx-path-grid strong {
  margin-top: auto;
  color: var(--rx-accent);
  font-family: var(--rx-heading-font);
  font-size: 1.25rem;
}

:focus-visible {
  outline: 3px solid rgba(255, 122, 0, 0.46);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .rx-hero,
  .rx-diagnostic {
    grid-template-columns: 1fr;
  }

  .rx-hero-copy {
    text-align: center;
  }

  .rx-label,
  .rx-actions,
  .rx-hero-proof,
  .rx-mini-proof {
    margin-inline: auto;
    justify-content: center;
  }

  .rx-hero-text {
    margin-inline: auto;
  }

  .rx-hero-system {
    width: min(660px, 100%);
    min-height: auto;
    margin-inline: auto;
  }

  .rx-floating-card {
    right: 18px;
  }

  .rx-diagnostic-copy {
    position: static;
    text-align: center;
  }

  .rx-result {
    grid-column: 1;
  }

  .rx-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .rx-header {
    width: min(100% - 20px, 1060px);
    margin-top: 10px;
  }

  .rx-header-inner {
    grid-template-columns: 1fr auto;
    border-radius: 22px;
    padding: 10px 12px 10px 16px;
  }

  .rx-header nav {
    display: none;
  }

  .rx-header-cta {
    padding: 0 14px;
  }

  .rx-hero {
    width: 100%;
    min-height: auto;
    margin-top: -104px;
    padding: 152px 18px 62px;
  }

  .rx-strip {
    grid-template-columns: 1fr;
  }

  .rx-strip article + article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 640px) {
  .rx-brand img {
    width: 116px;
  }

  .rx-header-cta {
    min-height: 42px;
    font-size: 0.8rem;
  }

  .rx-hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.15rem);
  }

  .rx-hero-text {
    font-size: 0.98rem;
  }

  .rx-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .rx-button {
    width: 100%;
  }

  .rx-console {
    min-height: auto;
    border-radius: 24px;
    padding: 18px;
  }

  .rx-floating-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .rx-field-grid,
  .rx-path-grid {
    grid-template-columns: 1fr;
  }

  .rx-diagnostic,
  .rx-paths {
    width: min(100% - 24px, 560px);
    margin-top: 48px;
  }

  .rx-form,
  .rx-result {
    border-radius: 22px;
    padding: 20px;
  }

  .rx-question-panel fieldset {
    padding: 15px;
  }

  .rx-question-panel legend {
    font-size: 1rem;
  }

  .rx-option {
    min-height: 60px;
  }

  .rx-diagnostic-copy h2,
  .rx-section-head h2 {
    font-size: clamp(2.1rem, 9vw, 2.8rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
