:root {
  --bg: #f6f4fa;
  --text: #232533;
  --text-soft: #707487;
  --muted: #707487;
  --primary: #8b6cff;
  --primary-2: #a58bff;
  --primary-3: #ede7ff;
  --mint: #b7d9c8;
  --mint-soft: #f3fbf7;
  --amber: #e6c27a;
  --red-soft: #e8b0b0;
  --line: #ece7f5;
  --panel: rgba(255, 255, 255, 0.78);
  --green-text: #426254;
  --shadow: 0 28px 70px rgba(35, 37, 51, 0.11);
  --shadow-soft: 0 14px 32px rgba(35, 37, 51, 0.08);
  --radius-lg: 28px;
  --container: 1180px;
  --transition: 280ms ease;
}

* {
  box-sizing: border-box;
  letter-spacing: 0 !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(246, 244, 250, 0)),
    var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(237, 231, 255, 0.42), transparent 42%),
    linear-gradient(305deg, rgba(183, 217, 200, 0.16), transparent 38%);
  pointer-events: none;
  z-index: -1;
}

body::after {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(100% - 28px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 74px 0;
  position: relative;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px 0 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(236, 231, 245, 0.92);
  box-shadow: 0 18px 40px rgba(35, 37, 51, 0.07);
  backdrop-filter: blur(24px);
  transition:
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

body.scrolled .topbar-inner {
  transform: translateY(8px);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(139, 108, 255, 0.16);
  box-shadow: 0 22px 44px rgba(35, 37, 51, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  /* border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: var(--shadow-soft);
  font-weight: 900; */
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.topbar-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(246, 244, 250, 0.78);
  border: 1px solid var(--line);
}

.topbar-nav a {
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.94rem;
  font-weight: 700;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
}

.topbar-nav a:hover {
  background: rgba(139, 108, 255, 0.1);
  color: var(--primary);
  transform: translateY(-1px);
}

.topbar-nav a.active {
  background: var(--primary-3);
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(139, 108, 255, 0.12);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  font-size: 0.93rem;
  margin-bottom: 18px;
  backdrop-filter: blur(16px);
}

.section-title {
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
  color: var(--text);
}

.section-subtitle {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.78;
  max-width: 760px;
}

.btn {
  border: 0;
  border-radius: 22px;
  padding: 16px 24px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    opacity var(--transition),
    background var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #8b6cff 0%, #a58bff 100%);
  box-shadow: 0 18px 34px rgba(139, 108, 255, 0.26);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #7658e8 0%, #9476f5 100%);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero {
  padding: 8px 0 8px;
}

.hero-card {
  padding: clamp(22px, 3.5vw, 36px);
  border-radius: 34px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(246, 244, 250, 0.7)),
    linear-gradient(180deg, rgba(237, 231, 255, 0.34), rgba(183, 217, 200, 0.12));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.hero-card::before,
.hero-card::after {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) ;
  gap: clamp(22px, 3vw, 30px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(2.45rem, 4.6vw, 4.1rem);
  line-height: 0.96;
  letter-spacing: 0;
  max-width: 700px;
}

.hero h1 span {
  display: block;
  color: var(--primary);
  font-size: 0.54em;
  line-height: 1.12;
  margin-top: 14px;
}

.hero p {
  margin: 0 0 28px;
  /* max-width: 600px; */
  color: var(--text-soft);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.78;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  color: #4a5261;
  font-weight: 700;
  font-size: 0.93rem;
}

.hero-pill::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  box-shadow: 0 0 0 6px rgba(139, 108, 255, 0.1);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.subcta {
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-proof {
  margin-top: 24px;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 640px;
}

.hero-proof-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-proof-card strong {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0;
  color: var(--primary);
}

.hero-proof-card span {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.concept-stack {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 0;
  width: 100%;
  /* max-width: 500px; */
  margin-left: auto;
  min-height: 520px;
  height: 520px;
  position: relative;
  padding: 24px 28px 14px 0;
}

.concept-stack::before {
  content: "";
  position: absolute;
  inset: 12% 8% 6%;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(237, 231, 255, 0.18));
  filter: blur(12px);
  z-index: -1;
}

.phone {
  width: 220px;
  flex: 0 0 220px;
  min-height: 430px;
  height: 430px;
  border-radius: 30px;
  padding: 18px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9),
    rgba(251, 249, 255, 0.76)
  );
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
  transform-origin: center bottom;
  animation: floatCard 8s ease-in-out infinite;
}

.phone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.34),
    transparent 20%
  );
  pointer-events: none;
}

.phone.tall {
  width: 390px;
  flex-basis: 390px;
  min-height: 560px;
  height: 560px;
  transform: translateY(65px);
  animation-duration: 7s;
}

.phone.small {
  width: 350px;
  flex-basis: 350px;
  min-height: 480px;
  height: 480px;
  animation-duration: 9s;
}

.concept-stack .phone:nth-child(1) {
  margin-right: -22px;
  transform: translateY(48px) rotate(-6deg);
  z-index: 1;
}

.concept-stack .phone:nth-child(2) {
  z-index: 2;
  margin-right: -10px;
}

.concept-stack .phone:nth-child(3) {
  transform: translateY(38px) rotate(4deg);
  z-index: 1;
}

.phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--mint), #79bda1);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
}

.top-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.phone-title {
  font-weight: 800;
  letter-spacing: 0;
  font-size: 0.98rem;
  color: #343b47;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.64);
  display: grid;
  place-items: center;
  color: var(--primary);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.purple-panel {
  border-radius: 24px;
  padding: 24px;
  min-height: 210px;
  color: #fff;
  background: linear-gradient(145deg, #8b6cff, #a58bff);
  box-shadow: 0 22px 40px rgba(139, 108, 255, 0.22);
}

.purple-panel h3,
.card h3,
.card h4 {
  margin: 0 0 12px;
  line-height: 1.18;
}

.purple-panel p,
.card p {
  margin: 0;
  line-height: 1.72;
}

.purple-panel p {
  color: rgba(255, 255, 255, 0.92) !important;
}

.card p {
  color: var(--text-soft);
}

.soft-card {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.alert-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(249, 235, 200, 0.38));
}

.mini-pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.mini-pill {
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-soft);
  border: 1px solid var(--line);
  font-size: 0.9rem;
}

.mini-pill.active {
  background: var(--primary-3);
  color: var(--primary);
  font-weight: 700;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(183, 217, 200, 0.36);
  color: #476346;
  font-weight: 700;
  margin-top: 12px;
}

.status-chip::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #5f947a;
}

.screen-chart {
  height: 150px;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.86),
    rgba(249, 246, 255, 0.7)
  );
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 14px;
}

.screen-chart::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(112, 116, 135, 0.08),
      rgba(112, 116, 135, 0.08) 1px,
      transparent 1px,
      transparent 56px
    ),
    repeating-linear-gradient(
      to right,
      rgba(112, 116, 135, 0.06),
      rgba(112, 116, 135, 0.06) 1px,
      transparent 1px,
      transparent 58px
    );
  pointer-events: none;
}

.chart-svg,
.image-card svg {
  width: 100%;
  height: 100%;
  display: block;
}

.image-card {
  min-height: 152px;
  overflow: hidden;
  position: relative;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.88),
    rgba(245, 240, 252, 0.82)
  );
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.image-card-dark {
  min-height: 170px;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.metric-box {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.metric-box strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: 0;
  color: var(--primary);
}

.phone-nav {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 10px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.nav-item {
  min-height: 58px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.86rem;
  text-align: center;
  padding: 10px 6px;
}

.nav-item svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.nav-item.active {
  background: var(--primary-3);
  color: var(--primary);
}

.card,
.stat-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.84),
    rgba(255, 255, 255, 0.66)
  );
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 24px;
}

.stats-grid,
.problem-grid,
.testimonial-grid,
.status-panel,
.doctor-grid,
.feature-tiles {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 32px;
}

.problem-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.governance-grid {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
}

.governance-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.data-card {
  display: flex;
  align-items: center;
  min-height: 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  box-shadow: none;
  transition:
    background var(--transition),
    border-color var(--transition);
}

.data-card::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.45;
  transition: opacity var(--transition);
}

.data-card:hover,
.data-card:focus-within {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(139, 108, 255, 0.22);
}

.data-card:hover::before,
.data-card:focus-within::before {
  opacity: 0.85;
}

.data-card__label {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  letter-spacing: -0.01em;
}

.insight-panel {
  margin-top: 30px;
  padding: 28px;
  max-width: 820px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(139, 108, 255, 0.1), rgba(183, 217, 200, 0.22));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.insight-panel p {
  margin: 0;
  color: var(--text);
  font-size: 1.15rem;
  line-height: 1.72;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 10px;
}

.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--primary-3);
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 900;
}

.solution-grid,
.waitlist-wrap {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 22px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.feature-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px 17px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
}

.feature-item span:first-child {
  color: var(--primary);
  font-weight: 900;
}

.feature-tiles {
  grid-template-columns: 1fr 1fr;
}

.tile {
  min-height: 220px;
  border-radius: 22px;
  padding: 22px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.82),
    rgba(248, 245, 253, 0.7)
  );
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.tile.large {
  grid-column: span 2;
  min-height: 260px;
}

.tile .tile-visual {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: min(46%, 240px);
  opacity: 0.9;
}

.waitlist-info {
  position: sticky;
  top: 22px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pill {
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  color: var(--text-soft);
  box-shadow: var(--shadow-soft);
  font-size: 0.94rem;
}

.contact-card {
  margin-top: 24px;
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.contact-card a {
  color: var(--primary);
  font-weight: 700;
}

form {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 700;
}

.input,
.select {
  width: 100%;
  min-height: 58px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  padding: 16px 18px;
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.input::placeholder {
  color: #9ba2af;
}

.input:focus,
.select:focus {
  border-color: rgba(139, 108, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(139, 108, 255, 0.12);
}

.consent-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--text-soft);
  line-height: 1.55;
  font-size: 0.94rem;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--primary);
}

.counter,
.form-note,
.quote-author {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

.form-status {
  min-height: 24px;
  font-weight: 700;
  font-size: 0.95rem;
}

.form-status.success {
  color: #426254;
}

.form-status.error {
  color: #b45f5f;
}

.testimonial-grid {
  margin-top: 32px;
  grid-template-columns: repeat(2, 1fr);
}

.segment-grid {
  grid-template-columns: repeat(3, 1fr);
}

.segment-card {
  min-height: 250px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(237, 231, 255, 0.38)),
    #fff;
}

.quote {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 16px;
}

.doctor-grid {
  margin-top: 30px;
  grid-template-columns: 1fr 1fr;
}

.list-clean {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.list-clean li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  line-height: 1.75;
}

.list-clean li::before {
  content: "•";
  position: absolute;
  left: 10px;
  color: var(--primary);
  font-size: 1.25rem;
  top: -1px;
}

.status-panel {
  margin-top: 28px;
  grid-template-columns: repeat(3, 1fr);
}

.status-item strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: var(--primary);
  letter-spacing: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.gradient-orb {
  display: none;
}

.gradient-orb.one {
  width: 140px;
  height: 140px;
  top: 12%;
  right: 3%;
  background: radial-gradient(
    circle,
    rgba(164, 133, 245, 0.34),
    rgba(164, 133, 245, 0)
  );
}

.gradient-orb.two {
  width: 220px;
  height: 220px;
  left: -3%;
  bottom: 1%;
  background: radial-gradient(
    circle,
    rgba(212, 201, 255, 0.4),
    rgba(212, 201, 255, 0)
  );
  animation-delay: 1.4s;
}

@keyframes floatCard {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

@keyframes pulseOrb {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes auroraShift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(0, -1%, 0) scale(1.05);
  }
}

.delay-1 {
  transition-delay: 80ms;
}

.delay-2 {
  transition-delay: 160ms;
}

.delay-3 {
  transition-delay: 240ms;
}

.delay-4 {
  transition-delay: 320ms;
}

.footer {
  padding: 28px 0 54px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

@media (max-width: 1120px) {
  .hero-grid,
  .solution-grid,
  .waitlist-wrap,
  .doctor-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 760px;
  }

  .concept-stack {
    max-width: none;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .waitlist-info {
    position: static;
  }

  .stats-grid,
  .problem-grid,
  .status-panel,
  .governance-grid,
  .segment-grid {
    grid-template-columns: 1fr;
  }

  .data-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-tiles {
    grid-template-columns: 1fr;
  }

  .tile.large {
    grid-column: auto;
  }

  .topbar-nav {
    display: none;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 48px 0;
  }

  .topbar {
    padding-top: 12px;
  }

  .hero-card {
    border-radius: 24px;
    padding: 22px 18px;
  }

  .cta-group,
  .topbar-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .topbar-inner {
    flex-direction: row;
    align-items: center;
  }

  .topbar-actions {
    display: none;
  }

  .btn {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 2.9rem);
    margin-bottom: 14px;
  }

  .hero h1 span {
    font-size: 0.58em;
    line-height: 1.16;
  }

  .hero p {
    line-height: 1.56;
    margin-bottom: 18px;
  }

  .hero-meta {
    display: none;
  }

  .hero-pill {
    padding: 10px 12px;
  }

  .hero .btn-secondary,
  .subcta {
    display: none;
  }

  .hero-proof {
    display: none;
  }

  .concept-stack {
    width: calc(100% + 36px);
    min-height: 0;
    height: auto;
    margin: 8px -18px 0;
    padding: 12px 18px 18px;
    gap: 16px;
    align-items: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 18px;
    -webkit-overflow-scrolling: touch;
  }

  .concept-stack .phone:nth-child(1),
  .concept-stack .phone:nth-child(2),
  .concept-stack .phone:nth-child(3) {
    margin-right: 0;
    transform: none;
  }

  .concept-stack::before {
    display: none;
  }

  .concept-stack .phone {
    width: clamp(280px, 78vw, 340px);
    flex: 0 0 clamp(280px, 78vw, 340px);
    min-height: 0;
    height: auto;
    scroll-snap-align: start;
    animation: none;
  }

  .phone-nav {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 8px;
    gap: 4px;
    border-radius: 22px;
  }

  .nav-item {
    min-height: 52px;
    padding: 8px 2px;
    font-size: 0.72rem;
  }

  .testimonial-grid,
  .feature-tiles,
  .footer-grid,
  .data-grid {
    grid-template-columns: 1fr;
  }

  .brand-copy small {
    font-size: 0.65rem;
  }
}
@media (max-width: 480px) {
  .section {
    padding: 32px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
