:root {
  --ink: #f7f9ff;
  --text: #aebbd2;
  --muted: #7c8aa6;
  --line: rgba(124, 60, 255, 0.16);
  --panel: rgba(17, 16, 28, 0.86);
  --soft: #12111d;
  --purple: #7d35f5;
  --violet: #8f52ff;
  --lilac: #a763ff;
  --cyan: #38a8ff;
  --green: #4be7bd;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(50, 31, 104, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 4%, rgba(124, 60, 255, 0.34), transparent 26rem),
    radial-gradient(circle at 88% 12%, rgba(56, 168, 255, 0.16), transparent 26rem),
    linear-gradient(180deg, #07080d 0%, #0a0911 46%, #0d111b 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(124, 60, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 60, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 72%);
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.75;
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.45rem, 6vw, 5.8rem);
  line-height: 0.95;
  max-width: 900px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.03;
}

h3 {
  font-size: 1.08rem;
  line-height: 1.25;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  width: min(calc(100% - 32px), var(--max));
  margin: 14px auto 0;
  padding: 12px 14px;
  border: 1px solid rgba(124, 60, 255, 0.14);
  border-radius: 999px;
  background: rgba(12, 11, 20, 0.78);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: #fff;
}

.brand > span:last-child span {
  color: #fff;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #d400ce, #4f5cff);
  box-shadow: 0 10px 24px rgba(124, 60, 255, 0.35);
}

.brand-mark img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: contain;
  object-position: center;
  filter: none;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: #b8c2d8;
  font-size: 0.92rem;
}

.nav a:hover {
  color: var(--purple);
}

.header-cta,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-cta {
  padding: 0 18px;
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--lilac));
  box-shadow: 0 12px 30px rgba(124, 60, 255, 0.28);
}

.btn {
  padding: 0 22px;
  min-height: 54px;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--lilac));
  box-shadow: 0 18px 38px rgba(124, 60, 255, 0.26);
}

.btn-secondary {
  border: 1px solid rgba(124, 60, 255, 0.18);
  color: #d9ccff;
  background: rgba(21, 19, 34, 0.72);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(124, 60, 255, 0.18);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--purple);
}

.section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 18px);
  display: grid;
  align-items: center;
  padding: 118px 0 80px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 8, 13, 0.98) 0%, rgba(8, 9, 18, 0.92) 28%, rgba(8, 9, 18, 0.58) 52%, rgba(8, 9, 18, 0.2) 100%),
    radial-gradient(circle at 24% 52%, rgba(124, 60, 255, 0.24), transparent 32rem),
    url("assets/doctor-workflow-01.png") center right / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(124, 60, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 60, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 62%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, #07080d 84%);
}

.hero-grid,
.split,
.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 56px;
  align-items: center;
}

.hero .hero-grid {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 0.28fr);
}

.hero-copy {
  display: grid;
  gap: 24px;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--purple);
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.hero-copy p {
  max-width: 680px;
  font-size: 1.12rem;
  color: #d8e3f8;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row span {
  padding: 10px 14px;
  border: 1px solid rgba(124, 60, 255, 0.14);
  border-radius: 999px;
  color: #d8e3f8;
  background: rgba(16, 15, 27, 0.74);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  display: none;
}

.orbital {
  position: absolute;
  border: 1px solid rgba(124, 60, 255, 0.16);
  border-radius: 50%;
  inset: 4% 0 0 0;
  transform: rotate(-12deg);
  max-width: 100%;
}

.orbital-two {
  inset: 12% 12% 6% 8%;
  border-color: rgba(46, 216, 255, 0.2);
  transform: rotate(18deg);
}

.device {
  position: absolute;
  border: 1px solid rgba(124, 60, 255, 0.16);
  border-radius: 28px;
  background: rgba(13, 12, 22, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.desktop-device {
  top: 58px;
  right: 0;
  width: min(100%, 730px);
  overflow: hidden;
}

.hero-product-shot {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
}

.hero-product-shot + .app-screen {
  display: none;
}

.device-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(124, 60, 255, 0.18);
  background: #0a0a12;
}

.device-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d8dced;
}

.device-top strong {
  margin-left: auto;
  color: #9db0d1;
  font-size: 0.83rem;
}

.app-screen {
  display: grid;
  grid-template-columns: 0.92fr 1.28fr 1.12fr;
  min-height: 430px;
  gap: 14px;
  padding: 14px;
  background: #080910;
}

.app-screen aside {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 0;
  border-right: 0;
  background: transparent;
}

.mini-logo {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple), var(--lilac));
}

.app-screen aside span {
  width: 38px;
  height: 10px;
  border-radius: 999px;
  background: rgba(124, 60, 255, 0.13);
}

.app-screen aside .side-active {
  background: var(--purple);
}

.exam-card,
.symptom-card,
.vein-panel,
.findings-panel {
  border: 1px solid rgba(124, 60, 255, 0.16);
  border-radius: 10px;
  background: #11101a;
}

.exam-card,
.symptom-card,
.findings-panel {
  padding: 16px;
}

.exam-card h3,
.symptom-card h3,
.findings-panel h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 1rem;
}

.exam-card span {
  display: block;
  margin-top: 13px;
  color: #8ca6d0;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.exam-card strong {
  display: block;
  color: #fff;
  font-size: 0.82rem;
  line-height: 1.3;
}

.symptom-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.symptom-card span,
.view-pill,
.vein-label {
  border: 1px solid rgba(56, 168, 255, 0.26);
  border-radius: 7px;
  color: #cfe3ff;
  background: #14233f;
  font-size: 0.72rem;
  font-weight: 800;
}

.symptom-card span {
  padding: 7px 10px;
  border-radius: 999px;
}

.vein-panel {
  position: relative;
  display: grid;
  align-content: space-between;
  padding: 12px;
}

.view-pill {
  width: fit-content;
  padding: 8px 10px;
}

.report-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.panel-header,
.metric-grid {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.panel-header small,
.metric-grid span {
  color: var(--muted);
}

.panel-header strong {
  display: block;
  margin-top: 4px;
}

.panel-header em {
  align-self: start;
  padding: 8px 12px;
  border-radius: 999px;
  color: #176c56;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 800;
  background: rgba(75, 231, 189, 0.18);
}

.vein-map {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 310px;
  border: 0;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 35%, rgba(124, 60, 255, 0.12), transparent 48%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(124, 60, 255, 0.03));
}

.vein-map svg {
  width: min(82%, 250px);
}

.vein-main,
.vein-branch {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vein-main {
  stroke: rgba(255, 255, 255, 0.16);
  stroke-width: 4;
}

.vein-branch {
  stroke: rgba(56, 168, 255, 0.38);
  stroke-width: 3;
  stroke-dasharray: 4 6;
}

.vein-map circle {
  fill: var(--green);
  stroke: rgba(75, 231, 189, 0.22);
  stroke-width: 8;
}

.vein-map circle:nth-of-type(2) {
  fill: #ff8629;
  stroke: rgba(255, 134, 41, 0.22);
}

.vein-map circle:nth-of-type(3) {
  fill: #ff4c55;
  stroke: rgba(255, 76, 85, 0.22);
}

.vein-label {
  position: absolute;
  padding: 6px 9px;
}

.label-blue {
  top: 26%;
  left: 50%;
}

.label-orange {
  top: 58%;
  left: 24%;
  border-color: rgba(255, 134, 41, 0.28);
  color: #ff9b42;
  background: rgba(255, 134, 41, 0.13);
}

.label-red {
  top: 76%;
  left: 52%;
  border-color: rgba(255, 76, 85, 0.28);
  color: #ff6570;
  background: rgba(255, 76, 85, 0.13);
}

.legend-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 10px;
  border: 1px solid rgba(56, 168, 255, 0.16);
  border-radius: 999px;
  color: #d7e5ff;
  font-size: 0.74rem;
  background: #0d1628;
}

.legend-row span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--green);
}

.legend-row span:nth-child(2)::before {
  background: #ff8629;
}

.legend-row span:nth-child(3)::before {
  background: #ff4c55;
}

.findings-panel {
  display: grid;
  gap: 14px;
  align-content: start;
}

.finding-table {
  display: grid;
  grid-template-columns: 1fr 0.7fr 0.7fr;
  overflow: hidden;
  border: 1px solid rgba(56, 168, 255, 0.14);
  border-radius: 8px;
}

.finding-table span,
.finding-table strong,
.finding-table em {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(56, 168, 255, 0.1);
  color: #f8fbff;
  font-size: 0.75rem;
  font-style: normal;
}

.finding-table strong {
  color: #c8d8f8;
}

.finding-table em {
  color: #ff8a2b;
}

.ai-card {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(124, 60, 255, 0.28);
  border-radius: 10px;
  background: rgba(124, 60, 255, 0.12);
}

.ai-card strong {
  color: #fff;
}

.ai-card small {
  color: #a9bbe0;
}

.findings-panel button {
  min-height: 44px;
  border: 0;
  border-radius: 7px;
  color: white;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple), var(--lilac));
}

.metric-grid span {
  flex: 1;
  padding: 14px;
  border-radius: 14px;
  background: rgba(124, 60, 255, 0.07);
}

.metric-grid strong {
  display: block;
  color: var(--ink);
}

.mobile-device {
  left: 0;
  bottom: 10px;
  width: 270px;
  padding: 18px;
  border-radius: 30px;
}

.phone-bar {
  width: 54px;
  height: 5px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: #d6d9e8;
}

.phone-card,
.ai-report-mini {
  padding: 16px;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--lilac));
}

.ai-report-mini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 10px;
  background: #11101a;
  border: 1px solid rgba(124, 60, 255, 0.24);
}

.ai-report-mini span {
  font-weight: 900;
}

.ai-report-mini strong {
  padding: 4px 8px;
  border: 1px solid rgba(124, 60, 255, 0.5);
  border-radius: 999px;
  color: #d9ccff;
  font-size: 0.72rem;
}

.phone-card span,
.phone-card strong {
  display: block;
}

.phone-card span {
  opacity: 0.76;
}

.phone-card strong {
  margin-top: 8px;
  font-size: 1.4rem;
}

.phone-lines {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.phone-lines span {
  height: 10px;
  border-radius: 999px;
  background: rgba(170, 188, 220, 0.18);
}

.mobile-device button,
.pdf-sheet button {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: var(--radius);
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple), var(--lilac));
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.align-left {
  margin-left: 0;
  text-align: left;
}

.section-heading .eyebrow {
  margin: 0 auto;
}

.section-heading.align-left .eyebrow {
  margin: 0;
}

.compare-grid,
.benefit-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.compare-card,
.benefit-grid article,
.pricing-table-card,
.pricing-rules article,
.proof-grid article,
.lead-form,
.diagnosis-card,
.security-panel,
.compat-panel,
.trial-card,
.final-cta > div {
  border: 1px solid rgba(124, 60, 255, 0.14);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: 0 18px 58px rgba(54, 38, 105, 0.08);
  backdrop-filter: blur(14px);
}

.compare-card {
  padding: 30px;
}

.compare-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.compare-card li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
}

.compare-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
}

.muted-card {
  background:
    linear-gradient(145deg, rgba(17, 16, 28, 0.96), rgba(22, 19, 34, 0.92));
}

.glow-card {
  background:
    linear-gradient(145deg, rgba(124, 60, 255, 0.22), rgba(56, 168, 255, 0.08)),
    rgba(17, 16, 28, 0.94);
}

.compare-card h3 {
  color: #fff;
}

.compare-card li {
  color: #d8e3f8;
}

.reverse {
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
}

.shot-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 24px;
  align-items: center;
}

.real-shot {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(124, 60, 255, 0.18);
  border-radius: 24px;
  background: #080910;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.real-shot img {
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: top left;
  background: #080910;
}

.real-shot figcaption {
  padding: 16px 20px;
  color: #aebbd2;
  font-size: 0.92rem;
}

.interface-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.interface-gallery figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(124, 60, 255, 0.18);
  border-radius: 18px;
  background: #080910;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.interface-gallery img {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: top left;
}

.interface-gallery figcaption {
  padding: 14px 16px;
  color: #aebbd2;
  font-size: 0.88rem;
}

.phone-shot {
  display: grid;
  place-items: center;
}

.phone-frame {
  position: relative;
  width: min(100%, 330px);
  min-height: 640px;
  padding: 14px;
  border: 8px solid #222044;
  border-radius: 42px;
  background: #07080d;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  width: 116px;
  height: 28px;
  border-radius: 0 0 20px 20px;
  transform: translateX(-50%);
  background: #030409;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 26px -14px 0;
  padding: 18px 24px;
  background: #1b1029;
}

.phone-header span,
.phone-header em {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-style: normal;
  font-weight: 900;
  background: #4f2499;
}

.phone-header em {
  width: 28px;
  height: 28px;
  background: #262033;
}

.phone-content {
  display: grid;
  gap: 16px;
  padding: 22px 8px;
}

.phone-content h3,
.phone-content h4 {
  margin: 0;
}

.phone-content p {
  margin-top: -12px;
  color: #9b8abd;
  font-size: 0.82rem;
}

.mobile-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mobile-metrics span,
.patient-mini {
  border-radius: 14px;
  background: #14131d;
}

.mobile-metrics span {
  display: grid;
  gap: 8px;
  padding: 16px;
  color: #9b8abd;
  font-size: 0.75rem;
}

.mobile-metrics strong {
  color: white;
  font-size: 1.55rem;
}

.patient-mini {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 15px;
}

.patient-mini strong {
  color: white;
}

.patient-mini span {
  color: #9b8abd;
  font-size: 0.8rem;
}

.patient-mini em {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 5px 8px;
  border-radius: 6px;
  color: #00d58e;
  font-style: normal;
  font-size: 0.64rem;
  background: rgba(0, 213, 142, 0.12);
}

.feature-list,
.security-grid,
.compact-grid,
.pulse-list,
.timeline,
.tag-cloud {
  display: grid;
  gap: 12px;
}

.feature-list span,
.security-grid span,
.compact-grid span,
.pulse-list span,
.timeline span,
.tag-cloud span {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 12px 16px;
  border: 1px solid rgba(124, 60, 255, 0.12);
  border-radius: var(--radius);
  color: #d8e3f8;
  background: rgba(18, 24, 39, 0.68);
}

.feature-list span::before,
.security-grid span::before,
.compact-grid span::before,
.pulse-list span::before,
.timeline span::before,
.tag-cloud span::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(75, 231, 189, 0.8);
}

.benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-grid article {
  min-height: 230px;
  padding: 22px;
}

.benefit-grid article span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--purple);
  font-weight: 900;
}

.benefit-grid article p {
  margin-top: 12px;
  font-size: 0.94rem;
}

.diagnosis-card,
.security-panel,
.compat-panel,
.trial-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 36px;
  align-items: center;
  padding: 42px;
}

.photo-break {
  position: relative;
  display: grid;
  min-height: 560px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(124, 60, 255, 0.18);
  border-radius: 28px;
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.36);
  background-color: #07080d;
  background-position: center right;
  background-size: cover;
  background-repeat: no-repeat;
}

.photo-break::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 13, 0.98) 0%, rgba(7, 8, 13, 0.88) 34%, rgba(7, 8, 13, 0.42) 66%, rgba(7, 8, 13, 0.14) 100%),
    radial-gradient(circle at 20% 48%, rgba(124, 60, 255, 0.26), transparent 25rem);
}

.photo-break::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(124, 60, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 60, 255, 0.07) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.9), transparent 66%);
}

.photo-break-diagnosis {
  background-image: url("assets/doctor-divider-01.png");
}

.photo-break-mobile {
  background-image: url("assets/doctor-divider-02.png");
}

.photo-break-conversion {
  background-image: url("assets/doctor-divider-03.png");
}

.photo-break-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  max-width: 680px;
  padding: 64px;
}

.photo-break-content.compact {
  max-width: 620px;
}

.photo-break-content h2 {
  color: #fff;
}

.photo-break-content p {
  max-width: 620px;
  color: #d8e3f8;
}

.photo-break-content .btn {
  width: fit-content;
}

.pdf-preview {
  display: grid;
  place-items: center;
}

.pdf-sheet {
  position: relative;
  width: min(100%, 360px);
  min-height: 450px;
  padding: 28px;
  border: 1px solid rgba(124, 60, 255, 0.16);
  border-radius: 16px;
  background: #11101a;
  box-shadow: var(--shadow);
}

.pdf-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 7px 10px;
  border-radius: 999px;
  color: white;
  font-weight: 900;
  background: var(--purple);
}

.pdf-lines {
  display: grid;
  gap: 10px;
  margin: 32px 0;
}

.pdf-lines span {
  height: 10px;
  border-radius: 999px;
  background: #e7e9f3;
}

.pdf-lines span:nth-child(2) {
  width: 72%;
}

.pdf-lines span:nth-child(3) {
  width: 84%;
}

.pdf-lines span:nth-child(4) {
  width: 58%;
}

.pdf-map {
  height: 150px;
  margin-bottom: 28px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 56% 46%, rgba(124, 60, 255, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(124, 60, 255, 0.1), rgba(46, 216, 255, 0.12));
}

.compact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.security-panel {
  background:
    radial-gradient(circle at 86% 18%, rgba(46, 216, 255, 0.15), transparent 19rem),
    linear-gradient(135deg, rgba(18, 24, 39, 0.96), rgba(46, 32, 91, 0.95));
}

.security-panel h2,
.security-panel p {
  color: white;
}

.security-panel p {
  opacity: 0.78;
}

.security-grid span {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.timeline span {
  position: relative;
}

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

.steps article {
  padding: 22px;
  border-top: 3px solid var(--purple);
  border-radius: var(--radius);
  background: rgba(17, 16, 28, 0.78);
}

.steps strong {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--lilac));
}

.steps p {
  margin-top: 10px;
  font-size: 0.92rem;
}

.trial-card {
  background:
    radial-gradient(circle at 80% 20%, rgba(124, 60, 255, 0.3), transparent 18rem),
    linear-gradient(135deg, rgba(17, 16, 28, 0.98), rgba(18, 24, 39, 0.96));
}

.trial-card h2 {
  color: #fff;
}

.trial-card p {
  color: #d8e3f8;
}

.trial-actions {
  display: grid;
  gap: 12px;
}

.pricing-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 20px;
  padding: 22px;
  border: 1px solid rgba(124, 60, 255, 0.18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 84% 20%, rgba(124, 60, 255, 0.28), transparent 18rem),
    linear-gradient(135deg, rgba(17, 16, 28, 0.98), rgba(18, 24, 39, 0.96));
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.28);
}

.pricing-banner div {
  display: grid;
  gap: 6px;
}

.pricing-banner strong {
  color: #fff;
  font-size: 1.22rem;
}

.pricing-banner span {
  color: #d8e3f8;
}

.pricing-tables {
  display: grid;
  gap: 20px;
}

.pricing-card-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0;
}

.pricing-card-grid article {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 310px;
  padding: 28px 22px;
  border: 1px solid rgba(124, 60, 255, 0.16);
  border-radius: 18px;
  background: #11101a;
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.2);
}

.pricing-card-grid .pricing-card-featured {
  border-color: rgba(124, 60, 255, 0.85);
  background: linear-gradient(180deg, rgba(124, 60, 255, 0.24), #11101a);
  transform: translateY(-14px);
}

.pricing-card-grid b {
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 6px 14px;
  border-radius: 999px;
  color: white;
  font-size: 0.72rem;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--purple), var(--lilac));
  box-shadow: 0 10px 28px rgba(124, 60, 255, 0.4);
}

.pricing-card-grid h3 {
  color: white;
  font-size: 1.28rem;
}

.pricing-card-grid p {
  color: white;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
}

.pricing-card-grid small,
.pricing-card-grid span {
  color: #9fa9bd;
  font-size: 0.9rem;
  font-weight: 500;
}

.pricing-card-grid strong {
  color: #a763ff;
}

.pricing-card-grid em {
  color: #aebbd2;
  font-style: normal;
}

.pricing-card-grid a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  align-self: end;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: white;
  font-weight: 900;
}

.pricing-card-featured a {
  border: 0;
  background: linear-gradient(135deg, var(--purple), var(--lilac));
}

.pricing-table-card {
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(17, 16, 28, 0.98), rgba(14, 16, 27, 0.96)) !important;
}

.pricing-table-head {
  display: grid;
  gap: 10px;
  padding: 28px 28px 18px;
}

.pricing-table-head h3 {
  color: #fff;
}

.pricing-table-head p {
  color: #d8e3f8;
}

.annual-card {
  border-color: rgba(124, 60, 255, 0.34);
  background:
    radial-gradient(circle at 88% 0%, rgba(75, 231, 189, 0.12), transparent 18rem),
    linear-gradient(145deg, rgba(17, 16, 28, 0.98), rgba(14, 16, 27, 0.96)) !important;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 17px 18px;
  border-top: 1px solid rgba(124, 60, 255, 0.18);
  text-align: left;
  white-space: nowrap;
}

th {
  color: #b987ff;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(124, 60, 255, 0.14);
}

td {
  color: #d8e3f8;
}

td strong {
  color: #fff;
}

.table-highlight {
  background: linear-gradient(90deg, rgba(124, 60, 255, 0.2), rgba(56, 168, 255, 0.08));
}

.pricing-rules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.pricing-rules article {
  padding: 22px;
}

.pricing-rules p {
  margin-top: 10px;
  font-size: 0.94rem;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.platforms span {
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  border: 1px solid rgba(124, 60, 255, 0.16);
  border-radius: 22px;
  color: var(--purple);
  font-weight: 900;
  background: rgba(17, 16, 28, 0.78);
  box-shadow: 0 16px 40px rgba(54, 38, 105, 0.08);
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-grid article {
  display: grid;
  gap: 10px;
  padding: 28px;
  text-align: center;
}

.proof-grid strong {
  color: var(--purple);
  font-size: 2.5rem;
}

.proof-grid span {
  color: var(--text);
}

.lead-grid {
  align-items: start;
}

.lead-note {
  margin-top: 24px;
  padding: 18px;
  border-left: 4px solid var(--purple);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(124, 60, 255, 0.08);
}

.lead-form {
  display: grid;
  gap: 15px;
  padding: 28px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: #dbe6fb;
  font-size: 0.92rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select {
  min-height: 50px;
  width: 100%;
  border: 1px solid rgba(124, 60, 255, 0.22);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--ink);
  background: #0d101a;
}

.lead-form input:focus,
.lead-form select:focus {
  outline: 3px solid rgba(124, 60, 255, 0.15);
  border-color: var(--purple);
}

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

.form-status {
  min-height: 24px;
  color: #176c56;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

details {
  border: 1px solid rgba(124, 60, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(17, 16, 28, 0.78);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 900;
}

details p {
  padding: 0 22px 20px;
}

.final-cta {
  text-align: center;
}

.final-cta > div {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 54px 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(124, 60, 255, 0.36), transparent 24rem),
    linear-gradient(135deg, rgba(17, 16, 28, 0.98), rgba(18, 24, 39, 0.96)) !important;
}

.final-cta h2 {
  color: #fff !important;
}

.final-cta p {
  max-width: 780px;
  color: #d8e3f8 !important;
}

.footer {
  display: flex;
  width: min(calc(100% - 32px), var(--max));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 34px 0 84px;
  border-top: 1px solid rgba(124, 60, 255, 0.12);
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 1040px) {
  .nav {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    padding: 18px;
    border: 1px solid rgba(124, 60, 255, 0.14);
    border-radius: 18px;
    background: rgba(17, 16, 28, 0.96);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: grid;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero-grid,
  .split,
  .reverse,
  .lead-grid,
  .shot-grid,
  .diagnosis-card,
  .security-panel,
  .compat-panel,
  .trial-card {
    grid-template-columns: 1fr;
  }

  .hero .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 510px;
  }

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

  .pricing-card-grid,
  .interface-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platforms {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 70px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    min-height: 760px;
    padding-top: 118px;
    background:
      linear-gradient(180deg, rgba(7, 8, 13, 0.96) 0%, rgba(7, 8, 13, 0.86) 38%, rgba(7, 8, 13, 0.7) 100%),
      radial-gradient(circle at 22% 24%, rgba(124, 60, 255, 0.28), transparent 18rem),
      url("assets/doctor-workflow-01.png") center right / cover no-repeat;
  }

  .hero-actions .btn,
  .trial-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 440px;
  }

  .desktop-device {
    top: 20px;
  }

  .hero-product-shot {
    height: 360px;
  }

  .mobile-device {
    width: 175px;
  }

  .app-screen {
    grid-template-columns: 1fr;
  }

  .app-screen aside {
    padding: 0;
  }

  .report-panel {
    padding: 16px;
  }

  .findings-panel {
    display: none;
  }

  .real-shot img {
    height: 360px;
  }

  .phone-frame {
    min-height: 590px;
  }

  .compare-grid,
  .benefit-grid,
  .compact-grid,
  .steps,
  .pricing-rules,
  .proof-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .diagnosis-card,
  .security-panel,
  .compat-panel,
  .trial-card {
    padding: 26px;
  }

  .photo-break {
    min-height: 660px;
    align-items: end;
    background-position: center right;
  }

  .photo-break::before {
    background:
      linear-gradient(180deg, rgba(7, 8, 13, 0.26) 0%, rgba(7, 8, 13, 0.78) 44%, rgba(7, 8, 13, 0.98) 100%),
      radial-gradient(circle at 32% 68%, rgba(124, 60, 255, 0.28), transparent 18rem);
  }

  .photo-break-content {
    padding: 30px;
  }

  .photo-break-content .btn {
    width: 100%;
  }

  .platforms span {
    width: calc(50% - 7px);
    height: 104px;
  }

  .footer {
    display: grid;
    justify-items: start;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 25;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    color: white;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple), var(--lilac));
    box-shadow: 0 18px 42px rgba(124, 60, 255, 0.32);
  }
}

@media (max-width: 640px) {
  .pricing-banner {
    display: grid;
  }

  .pricing-banner .btn {
    width: 100%;
  }

  .pricing-card-grid,
  .interface-gallery {
    grid-template-columns: 1fr;
  }

  .pricing-card-grid .pricing-card-featured {
    transform: none;
  }
}

@media (max-width: 440px) {
  h1 {
    font-size: 2.35rem;
  }

  .brand > span:last-child {
    font-size: 0.94rem;
  }

  .hero-visual {
    min-height: 390px;
  }

  .desktop-device {
    border-radius: 20px;
  }

  .mobile-device {
    display: none;
  }

  .exam-sidebar {
    display: none !important;
  }

  .metric-grid {
    display: none;
  }

  .vein-map {
    min-height: 210px;
  }
}
