:root {
  color-scheme: light;
  font-family: "Inter", Arial, sans-serif;
  font-synthesis: none;
  --ink: #181925;
  --muted: #666666;
  --accent: #918df6;
  --accent-blue: #2c78fc;
  --line: rgba(24, 25, 37, 0.08);
  --surface: rgba(0, 0, 0, 0.03);
  --surface-strong: rgba(0, 0, 0, 0.045);
  --container: 984px;
  --section-tight: 56px;
  --section: 84px;
  --section-wide: 104px;
  --shadow-soft: 0 16px 44px rgba(24, 25, 37, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #ffffff;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: calc(12px + env(safe-area-inset-top, 0px));
  left: calc(12px + env(safe-area-inset-left, 0px));
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus-visible {
  outline: 3px solid rgba(44, 120, 252, 0.45);
  outline-offset: 3px;
  transform: translateY(0);
}

[id] {
  scroll-margin-top: 88px;
}

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

img {
  display: block;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 32px;
  left: 50%;
  display: grid;
  width: min(calc(100% - 40px), 652px);
  height: 52px;
  grid-template-columns: 44px minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  overflow: hidden;
  padding: 0 8px;
  border-radius: 24px;
  background: rgba(20, 20, 31, 0.98);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
  transform: translateX(-50%);
  color: #bbbcc3;
  font-size: 13.9px;
  font-weight: 500;
}

.site-header__brand {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
}

.site-header__brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.site-header__nav {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 18px;
  white-space: nowrap;
}

.site-header__nav img {
  width: 14px;
  height: 14px;
}

.site-header__nav a:first-child {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.site-header a {
  transition: color 160ms ease, background-color 160ms ease;
}

.site-header a:hover {
  color: #ffffff;
}

.site-header__login {
  flex: 0 0 auto;
  padding: 0 2px;
}

.site-header__register {
  display: inline-flex;
  flex: 0 0 auto;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  padding: 0 22px;
  border-radius: 999px;
  background: #9580ff;
  color: #ffffff;
}

.site-header a:focus-visible,
.site-footer a:focus-visible,
.small-link:focus-visible,
.price-card__cta:focus-visible,
.faq summary:focus-visible,
.sticky-cta:focus-visible {
  outline: 3px solid rgba(44, 120, 252, 0.35);
  outline-offset: 3px;
}

.site-header a:focus-visible {
  outline: 0;
  box-shadow: inset 0 0 0 3px rgba(44, 120, 252, 0.45);
}

.hero {
  min-height: 0;
  padding: 118px 0 72px;
  background: #ffffff;
}

.hero__content {
  width: min(100% - 40px, 760px);
  margin: 0 auto;
  text-align: center;
}

.hero__badge {
  display: inline-flex;
  width: auto;
  max-width: min(100%, 420px);
  min-height: 32px;
  align-items: center;
  gap: 6px;
  padding: 6px 8px 6px 6px;
  border-radius: 999px;
  background: rgba(44, 120, 252, 0.08);
  color: #344054;
  font-size: 12.7px;
  font-weight: 300;
  line-height: 18.85px;
  letter-spacing: 0;
  transition: background-color 160ms ease;
}

.hero__badge:hover {
  background: rgba(44, 120, 252, 0.13);
}

.hero__badge-brand {
  flex: 0 0 auto;
  width: auto;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2c78fc, #918df6);
  color: #ffffff;
  font-size: 12.7px;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
}

.hero__badge-copy {
  flex: 0 1 auto;
  white-space: nowrap;
}

.hero__badge img {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

h1 {
  margin: 12px 0 0;
  color: var(--ink);
  letter-spacing: -1.4px;
  text-align: center;
  text-wrap: balance;
}

h1 strong,
h1 span {
  display: block;
}

h1 strong {
  font-size: clamp(46px, 5vw, 59.6px);
  font-weight: 600;
  line-height: 1.06;
}

h1 span {
  margin-top: 6px;
  font-size: clamp(34px, 3.7vw, 46px);
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}

.hero__lead {
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 17.9px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 0;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 15.9px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button:focus-visible,
.hero__badge:focus-visible,
.product__tabs a:focus-visible {
  outline: 3px solid rgba(44, 120, 252, 0.35);
  outline-offset: 3px;
}

.button--primary {
  width: auto;
  min-width: 230px;
  padding: 0 30px;
  background: var(--accent);
  color: #ffffff;
}

.button--primary:hover {
  background: #817cf1;
  box-shadow: 0 10px 24px rgba(145, 141, 246, 0.24);
}

.button--secondary {
  width: auto;
  min-width: 164px;
  padding: 0 24px;
  background: var(--surface);
  color: var(--muted);
}

.button--secondary:hover {
  background: rgba(0, 0, 0, 0.06);
}

.hero__proof {
  display: flex;
  width: min(calc(100% - 32px), 760px);
  min-height: 24px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px auto 0;
}

.hero__proof span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #5f646a;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
  box-shadow: 0 8px 22px rgba(24, 25, 37, 0.04);
}

.how-it-works {
  padding: var(--section-tight) 24px var(--section);
  background: #ffffff;
}

.how-it-works__grid {
  display: grid;
  width: min(100%, var(--container));
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px auto 0;
}

.how-it-works__grid article {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(24, 25, 37, 0.04);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.how-it-works__grid article:hover {
  border-color: rgba(145, 141, 246, 0.3);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.how-it-works__grid span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
}

.how-it-works__grid h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 21px;
  font-weight: 500;
  line-height: 27px;
  letter-spacing: -0.32px;
}

.how-it-works__grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 21px;
}

.product {
  position: relative;
  min-height: 0;
  padding-top: 79.06px;
  padding-bottom: 48px;
  background: url("assets/cerecon-background.jpg?v=208-6") center center / cover no-repeat;
}

.product__tabs {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  display: flex;
  width: 466.99px;
  height: 52px;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  padding: 0 10px;
  border-radius: 0 0 32px 32px;
  background: #ffffff;
  transform: translateX(-50%);
  color: #999999;
  font-size: 13.9px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.32px;
}

.product__tabs a,
.product__tabs span {
  display: inline-flex;
  height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  white-space: nowrap;
}

.product__tabs a:hover {
  color: #181925;
}

.product__tabs span {
  min-width: 79.34px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
  color: #181925;
}

.product__preview {
  width: min(calc(100% - 48px), 805px);
  aspect-ratio: 805 / 604;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 21px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.02);
}

.product__preview img,
.product__preview iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.product__preview img {
  object-fit: cover;
}

.product__preview iframe {
  width: 100% !important;
  height: 100% !important;
}

.benefits {
  display: grid;
  width: min(calc(100% - 48px), 980px);
  min-height: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 auto;
  padding: var(--section-tight) 0 34px;
}

.benefit {
  min-height: 172px;
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  text-align: center;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.benefit:hover {
  border-color: rgba(145, 141, 246, 0.26);
  box-shadow: 0 12px 34px rgba(24, 25, 37, 0.06);
  transform: translateY(-1px);
}

.benefit__icon {
  display: inline-flex;
  width: 40px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(145, 141, 246, 0.08);
}

.benefit__icon img {
  width: 20px;
  height: 20px;
}

.benefit p {
  margin: 8.74px auto 0;
  color: var(--muted);
  font-size: 17.9px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.32px;
}

.benefit strong {
  color: var(--ink);
  font-weight: 700;
}

.trust-strip {
  display: grid;
  width: min(var(--container), calc(100% - 48px));
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0 auto var(--section);
}

.trust-strip div {
  min-height: 104px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.trust-strip div:hover {
  border-color: rgba(145, 141, 246, 0.28);
  box-shadow: 0 12px 34px rgba(24, 25, 37, 0.06);
  transform: translateY(-1px);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 20px;
}

.section-heading {
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: #666666;
  font-size: 13.9px;
  line-height: 20px;
}

.section-kicker--purple {
  background: #918df6;
  color: #ffffff;
}

.section-heading h2 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 35.9px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -1.2px;
  text-wrap: balance;
}

.section-heading p {
  max-width: 470px;
  margin: 15px auto 0;
  color: var(--muted);
  font-size: 15.9px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
  text-wrap: pretty;
}

.capabilities {
  min-height: 0;
  padding: var(--section) 0;
  background: #ffffff;
}

.capabilities__grid {
  display: grid;
  width: min(calc(100% - 48px), var(--container));
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 40px auto 0;
}

.feature-card,
.feature-strip {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid transparent;
  background: var(--surface);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.feature-card:hover,
.feature-strip:hover {
  border-color: rgba(145, 141, 246, 0.24);
  box-shadow: 0 14px 36px rgba(24, 25, 37, 0.06);
  transform: translateY(-1px);
}

.feature-card {
  display: flex;
  min-height: 620px;
  flex-direction: column;
  padding: 28px 32px;
}

.feature-card__icon {
  display: grid;
  width: 40px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  background: #ffffff;
}

.feature-card__icon img {
  width: 20px;
  height: 20px;
}

.feature-card h3 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 23.8px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.32px;
}

.feature-card h3 em {
  color: #33c758;
  font-style: normal;
  font-weight: 500;
}

.feature-card > p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.feature-list,
.audit-list,
.price-card ul {
  padding: 0;
  list-style: none;
}

.feature-list {
  margin: 12px 0 16px;
}

.feature-list li,
.audit-list li {
  position: relative;
  padding-left: 24px;
  font-size: 13.9px;
  line-height: 24px;
}

.feature-list li::before {
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: center / contain no-repeat;
  content: "";
}

.feature-card--fear .feature-list li:first-child::before {
  background-image: url("assets/cerecon-icon-fear-route.svg?v=208-5");
}

.feature-card--fear .feature-list li:nth-child(2)::before {
  background-image: url("assets/cerecon-icon-fear-audit.svg?v=208-5");
}

.feature-card--fear .feature-list li:nth-child(3)::before {
  background-image: url("assets/cerecon-icon-fear-price.svg?v=208-5");
}

.feature-card--account .feature-list li:first-child::before {
  background-image: url("assets/cerecon-icon-account-records.svg?v=208-5");
}

.feature-card--account .feature-list li:nth-child(2)::before {
  background-image: url("assets/cerecon-icon-account-plan.svg?v=208-5");
}

.feature-card--account .feature-list li:nth-child(3)::before {
  background-image: url("assets/cerecon-icon-account-support.svg?v=208-5");
}

.feature-card--program .feature-list li:first-child::before {
  background-image: url("assets/cerecon-icon-program-cost.svg?v=208-5");
}

.feature-card--program .feature-list li:nth-child(2)::before {
  background-image: url("assets/cerecon-icon-program-clinic.svg?v=208-5");
}

.feature-card--program .feature-list li:nth-child(3)::before {
  background-image: url("assets/cerecon-icon-program-plan.svg?v=208-5");
}

.small-link {
  display: inline-flex;
  height: 32px;
  align-items: center;
  gap: 9px;
  padding: 0 9px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.05);
  font-size: 13.9px;
  transition: transform 160ms ease;
}

.small-link:hover {
  transform: translateY(-1px);
}

.small-link img {
  width: 16px;
  height: 16px;
}

.fear-bars {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.fear-bars div {
  display: grid;
  grid-template-columns: 1fr 50px;
  align-items: center;
  gap: 10px;
  color: #555b61;
  font-size: 13px;
}

.fear-bars span {
  position: relative;
  z-index: 0;
  display: flex;
  min-height: 36px;
  align-items: center;
  padding-left: 10px;
}

.fear-bars span::before {
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: var(--value);
  border-radius: 7px;
  background: #e8e8e8;
  content: "";
}

.fear-bars b {
  font-weight: 400;
  text-align: right;
}

.feature-card--audit .feature-card__icon,
.feature-card--audit h3 em {
  color: #3178ff;
}

.audit-list {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
}

.audit-list li::before {
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: center / contain no-repeat;
  content: "";
}

.audit-list li:first-child::before {
  background-image: url("assets/cerecon-icon-audit-equipment.svg?v=208-5");
}

.audit-list li:nth-child(2)::before {
  background-image: url("assets/cerecon-icon-audit-doctor.svg?v=208-5");
}

.audit-list li:nth-child(3)::before,
.audit-list li:nth-child(4)::before {
  background-image: url("assets/cerecon-icon-audit-test.svg?v=208-5");
}

.audit-list strong,
.audit-list small {
  display: block;
}

.audit-list strong {
  font-weight: 500;
}

.audit-list small {
  color: #777777;
  font-size: 11px;
  line-height: 13px;
}

.audit-map {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 446px;
  height: 199px;
  object-fit: cover;
}

.feature-card--account,
.feature-card--program {
  min-height: 620px;
}

.feature-card--account .feature-card__icon,
.feature-card--account h3 em {
  color: #f337ad;
}

.account-screen {
  width: 256px;
  height: 306px;
  margin: 16px auto 0;
  object-fit: cover;
  object-position: top;
}

.feature-card--program .feature-card__icon,
.feature-card--program h3 em {
  color: #ff9d00;
}

.feature-card--program .feature-list {
  margin-top: 28px;
}

.calm-score {
  display: grid;
  width: 128px;
  height: 128px;
  place-items: center;
  margin: 20px auto 0;
  border: 11px solid #2fc45a;
  border-radius: 50%;
}

.calm-score strong {
  font-size: 39px;
  font-weight: 400;
}

.feature-card--program h4 {
  margin: 16px 0 0;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

.feature-card--program .score-copy {
  text-align: center;
}

.score-legend {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 18px;
  font-size: 13px;
}

.score-legend span:first-child {
  color: #ff3b16;
}

.score-legend span:nth-child(2) {
  color: #ff9d00;
}

.score-legend span:last-child {
  color: #2fc45a;
}

.feature-strip {
  min-height: 170px;
  padding: 20px 32px;
}

.feature-strip h3 {
  margin: 0;
  color: var(--ink);
  font-size: 19px;
  font-weight: 500;
}

.feature-strip p {
  max-width: calc(100% - 96px);
  margin: 4px 0 0;
  color: #777777;
  font-size: 15px;
  line-height: 24px;
}

.feature-strip__mark {
  position: absolute;
  right: 28px;
  top: 50%;
  width: 56px;
  height: 56px;
  transform: translateY(-50%);
}

.pricing {
  min-height: 0;
  padding: var(--section) 0;
}

.pricing .section-heading p {
  max-width: 380px;
}

.pricing__grid {
  display: grid;
  width: min(calc(100% - 48px), 1098px);
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px auto 0;
}

.price-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 28px;
  border: 1.25px solid #e6e8eb;
  border-radius: 16px;
  background: #ffffff;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.price-card:hover {
  border-color: rgba(145, 141, 246, 0.38);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.price-card h3 {
  margin: 0;
  color: #8561ff;
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
}

.price-card > p {
  min-height: 72px;
  margin: 16px 0 0;
  color: #434343;
  font-size: 16px;
  line-height: 24px;
}

.price-card > span,
.price-card small {
  color: #687077;
  font-size: 14px;
  line-height: 20px;
}

.price-card ul {
  display: grid;
  gap: 8px;
  min-height: 250px;
  margin: 18px 0 0;
  color: #434343;
  font-size: 14px;
  line-height: 22px;
}

.price-card li {
  position: relative;
  padding-left: 28px;
}

.price-card li::before {
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  background: url("assets/cerecon-icon-price-check.svg?v=208-5") center / contain no-repeat;
  content: "";
}

.price-card__price {
  margin: 34px auto 18px;
  color: #141414;
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
}

.price-card small {
  max-width: 445px;
  margin: 0 auto;
}

.price-card__cta {
  display: inline-flex;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin: 18px 0 0;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.price-card__cta:hover {
  background: #817cf1;
  box-shadow: 0 10px 24px rgba(145, 141, 246, 0.2);
  transform: translateY(-1px);
}

.pricing__note {
  max-width: 640px;
  margin: 18px auto 0;
  color: #777777;
  font-size: 13px;
  line-height: 20px;
  text-align: center;
}

.comparison {
  min-height: 0;
  margin-top: 0;
  padding: var(--section) 0;
}

.comparison .section-heading h2 {
  letter-spacing: -1.8px;
}

.comparison .section-heading p {
  max-width: 500px;
  font-size: 17.9px;
}

.comparison-scroll-hint {
  display: none;
  margin: 20px 16px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 20px;
  text-align: center;
}

.comparison-scroll-hint--visible {
  display: block;
}

.comparison-scroll-hint span {
  display: inline-block;
  margin-right: 4px;
  color: var(--accent-blue);
  font-size: 16px;
}

.comparison-table {
  width: min(calc(100% - 32px), 986px);
  margin: 28px auto 0;
  overflow-x: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  scrollbar-color: rgba(145, 141, 246, 0.45) rgba(0, 0, 0, 0.04);
}

.comparison-table:focus-visible {
  outline: 3px solid rgba(44, 120, 252, 0.35);
  outline-offset: 3px;
}

.comparison-table__head,
.comparison-row {
  display: grid;
  width: 984px;
  grid-template-columns: 492px repeat(4, 123px);
  align-items: center;
}

.comparison-table__head {
  min-height: 93px;
  text-align: center;
}

.comparison-table__head strong {
  font-size: 13.9px;
  font-weight: 500;
}

.comparison-table__head strong:first-of-type {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  padding-bottom: 12px;
  border: 1.25px solid #918df6;
  border-bottom: 0;
  border-radius: 24px 24px 0 0;
}

.comparison-table__head strong:first-of-type img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.comparison-row {
  min-height: 57px;
  border-bottom: 1.25px solid #e8e8e8;
}

.comparison-row > strong {
  position: relative;
  padding-left: 24px;
  font-size: 15.9px;
  font-weight: 500;
}

.comparison-row > strong::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  background: center / contain no-repeat;
  content: "";
  transform: translateY(-50%);
}

.comparison-row:nth-child(2) > strong::before {
  background-image: url("assets/cerecon-icon-comparison-cost.svg?v=208-5");
}

.comparison-row:nth-child(3) > strong::before {
  background-image: url("assets/cerecon-icon-comparison-clinic.svg?v=208-5");
}

.comparison-row:nth-child(4) > strong::before {
  background-image: url("assets/cerecon-icon-comparison-network.svg?v=208-5");
}

.comparison-row:nth-child(5) > strong::before {
  background-image: url("assets/cerecon-icon-comparison-doctor.svg?v=208-5");
}

.comparison-row:nth-child(6) > strong::before {
  background-image: url("assets/cerecon-icon-comparison-plan.svg?v=208-5");
}

.comparison-row:nth-child(7) > strong::before {
  background-image: url("assets/cerecon-icon-comparison-support.svg?v=208-5");
}

.comparison-row:nth-child(8) > strong::before {
  background-image: url("assets/cerecon-icon-comparison-reminder.svg?v=208-5");
}

.comparison-row:nth-child(9) > strong::before {
  background-image: url("assets/cerecon-icon-comparison-funnel.svg?v=208-5");
}

.comparison-row:nth-child(10) > strong::before {
  background-image: url("assets/cerecon-icon-comparison-funnel.svg?v=208-5");
}

.comparison-row i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  justify-self: center;
  border: 2px solid #918df6;
  border-radius: 50%;
  color: #918df6;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.comparison-row i:not(.maybe):not(.no) {
  border: 0;
  background: url("assets/cerecon-icon-comparison-check.svg?v=208-5") center / 20px 20px no-repeat;
  font-size: 0;
}

.comparison-row i:first-of-type:not(.maybe):not(.no) {
  width: 123px;
  height: 57px;
  border-color: #918df6;
  border-style: solid;
  border-width: 0 1.25px;
  border-radius: 0;
}

.comparison-row:last-child i:first-of-type:not(.maybe):not(.no) {
  border-bottom-width: 1.25px;
  border-radius: 0 0 18px 18px;
}

.comparison-row i:first-of-type::after {
  display: none;
}

.comparison-row i:first-of-type {
  font-size: 0;
}

.comparison-row .maybe {
  border-color: #ff9d00;
  color: #ff9d00;
}

.comparison-row .no {
  border: 0;
  color: #d5d5d5;
  font-size: 26px;
  font-weight: 300;
}

.faq {
  min-height: 0;
  padding: var(--section) 24px calc(var(--section-wide) + 72px);
}

.faq .section-heading h2 {
  font-size: 36px;
  line-height: 44px;
}

.faq__list {
  width: min(100%, 620px);
  margin: 36px auto 0;
}

.faq details {
  margin-bottom: 3px;
  border: 1px solid transparent;
  border-radius: 13px;
  background: var(--surface);
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.faq details:hover,
.faq details[open] {
  border-color: var(--line);
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(24, 25, 37, 0.04);
}

.faq summary {
  position: relative;
  min-height: 44px;
  padding: 12px 42px 10px 16px;
  cursor: pointer;
  list-style: none;
  font-size: 15.9px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  right: 16px;
  width: 16px;
  height: 16px;
  background: url("assets/cerecon-icon-faq-chevron.svg?v=208-5") center / contain no-repeat;
  content: "";
}

.faq details[open] summary::after {
  transform: rotate(180deg);
}

.faq details p {
  margin: 0;
  padding: 0 16px 14px;
  color: #666666;
  font-size: 13px;
  line-height: 20px;
}

.revenue-cta {
  display: grid;
  width: calc(100% - 32px);
  min-height: 348px;
  place-items: center;
  margin: 0 16px;
  padding: 72px 24px;
  border-radius: 24px 24px 0 0;
  background: rgba(0, 0, 0, 0.025);
}

.revenue-cta__content {
  display: grid;
  justify-items: center;
  padding: 0 24px;
  text-align: center;
}

.revenue-cta h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -1.1px;
  text-align: center;
}

.revenue-cta p {
  max-width: 520px;
  margin: 14px 0 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
}

.site-footer {
  min-height: 0;
  padding: 38px 0 56px;
  background: #ffffff;
}

.site-footer__content {
  display: grid;
  width: min(calc(100% - 48px), 984px);
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 72px;
  margin: 0 auto;
  padding-top: 0;
}

.site-footer a {
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: var(--ink);
}

.sticky-cta {
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.sticky-cta:hover {
  background: #817cf1;
  box-shadow: 0 16px 38px rgba(145, 141, 246, 0.32);
  transform: translateY(-1px);
}

.site-footer h3,
.site-footer p,
.site-footer a {
  margin: 0;
  font-size: 13.9px;
  line-height: 24px;
}

.site-footer h3 {
  font-weight: 500;
}

.site-footer a,
.site-footer p {
  display: block;
  color: #999999;
}

.site-footer__about p + p {
  margin-top: 15px;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 4px;
  border-radius: 50%;
  background: #33c758;
}

.sticky-cta {
  position: fixed;
  z-index: 20;
  right: calc(16px + env(safe-area-inset-right, 0px));
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  display: none;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(145, 141, 246, 0.28);
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 900px) {
  .site-header {
    width: min(calc(100% - 32px), 560px);
  }

  .hero {
    min-height: 0;
    padding: 116px 0 64px;
  }

  .product {
    height: auto;
    min-height: 650px;
    padding: 79px 24px 44px;
  }

  .product__preview {
    width: min(805px, 100%);
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .benefits {
    width: min(100% - 48px, 700px);
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 56px 0 56px;
  }

  .how-it-works__grid,
  .trust-strip,
  .capabilities,
  .pricing,
  .comparison,
  .faq {
    min-height: 0;
  }

  .how-it-works__grid,
  .trust-strip {
    width: min(100%, 620px);
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-bottom: 56px;
  }

  .capabilities {
    padding: 72px 24px;
  }

  .capabilities__grid,
  .pricing__grid {
    width: min(100%, 620px);
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .pricing {
    padding: 72px 24px;
  }

  .price-card {
    min-height: 0;
  }

  .comparison {
    margin-top: 0;
    padding: 72px 0 48px;
  }

  .comparison-table {
    width: calc(100% - 32px);
    overflow-x: auto;
  }

  .comparison-table__head,
  .comparison-row {
    width: 984px;
  }

  .faq {
    padding: 72px 24px 80px;
  }

  .revenue-cta {
    margin: 0 16px;
    transform: none;
  }

  .site-footer__content {
    width: min(100% - 48px, 700px);
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 56px;
  }

  .site-footer__about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1018px) {
  .comparison-table {
    overflow-x: auto;
  }
}

@media (max-width: 600px) {
  .site-header {
    top: calc(16px + env(safe-area-inset-top, 0px));
    width: calc(100% - 32px);
    grid-template-columns: 50px 1fr auto;
  }

  .site-header__nav,
  .site-header__login {
    display: none;
  }

  .site-header__register {
    justify-self: end;
    max-width: 128px;
    padding: 0 16px;
  }

  .hero {
    min-height: 0;
    padding: calc(96px + env(safe-area-inset-top, 0px)) 0 52px;
  }

  .hero__content {
    width: min(100% - 40px, 480px);
  }

  .hero__badge {
    width: min(320px, 100%);
    font-size: 11.4px;
  }

  .hero__badge-copy {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  h1 {
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 18px;
    letter-spacing: 0;
  }

  h1 strong {
    font-size: 32px;
    line-height: 38px;
  }

  h1 span {
    margin-top: 3px;
    font-size: 23px;
    line-height: 30px;
  }

  .hero__lead {
    max-width: 320px;
    margin-top: 14px;
    font-size: 15px;
    line-height: 21px;
  }

  .desktop-only {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
  }

  .button {
    width: min(100%, 285px);
    min-width: 0;
    padding: 0 20px;
    font-size: 14px;
  }

  .hero__proof {
    width: min(100%, 365px);
    gap: 8px;
    margin: 24px auto 0;
  }

  .hero__proof span {
    min-height: 30px;
    font-size: 12px;
  }

  .product {
    min-height: 490px;
    padding: 78px 16px 36px;
  }

  .product__tabs {
    width: min(100% - 32px, 467px);
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 8px;
    scrollbar-width: none;
  }

  .product__tabs::-webkit-scrollbar {
    display: none;
  }

  .product__tabs a,
  .product__tabs span {
    padding: 0 5px;
    font-size: 11.2px;
  }

  .product__tabs span {
    min-width: 55px;
  }

  .product__preview {
    aspect-ratio: 1 / 1.18;
  }

  .product__preview img {
    object-position: center;
  }

  .benefits {
    width: calc(100% - 40px);
  }

  .how-it-works {
    padding: 48px 16px 52px;
  }

  .how-it-works__grid article {
    min-height: 0;
    padding: 22px 20px;
  }

  .trust-strip {
    width: calc(100% - 40px);
    margin-bottom: 56px;
  }

  .benefit p {
    font-size: 16px;
    line-height: 22px;
  }

  .section-heading h2 {
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
    font-size: 26px;
    line-height: 32px;
    letter-spacing: 0;
  }

  .section-heading p {
    max-width: 320px;
    font-size: 14px;
    line-height: 21px;
  }

  .capabilities {
    padding-right: 16px;
    padding-left: 16px;
  }

  .capabilities__grid {
    gap: 12px;
  }

  .feature-card {
    min-height: 0;
    padding: 24px 20px 28px;
  }

  .feature-card h3 {
    font-size: 21px;
    line-height: 26px;
  }

  .fear-bars {
    margin-bottom: 8px;
  }

  .audit-map {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% + 40px);
    height: 190px;
    margin: 24px -20px -28px;
  }

  .feature-card--account,
  .feature-card--program {
    min-height: 0;
  }

  .account-screen {
    max-width: 100%;
  }

  .feature-card--program .feature-list {
    margin-top: 32px;
  }

  .calm-score {
    margin-top: 18px;
  }

  .feature-strip {
    min-height: 0;
    padding: 24px 20px;
  }

  .feature-strip p {
    font-size: 14px;
    line-height: 21px;
  }

  .feature-strip__mark {
    display: none;
  }

  .pricing {
    padding-right: 16px;
    padding-left: 16px;
  }

  .price-card {
    min-height: 0;
  }

  .price-card > p,
  .price-card ul {
    min-height: 0;
  }

  .price-card__price {
    margin-top: 32px;
    font-size: 34px;
  }

  .comparison {
    padding-top: 56px;
  }

  .comparison-table {
    position: relative;
    border-radius: 14px;
  }

  .comparison-table__head,
  .comparison-row {
    width: 772px;
    grid-template-columns: 280px repeat(4, 123px);
  }

  .pricing__note {
    text-align: left;
  }

  .comparison .section-heading {
    padding: 0 20px;
  }

  .comparison .section-heading p {
    font-size: 14px;
    line-height: 21px;
  }

  .comparison .section-heading h2,
  .revenue-cta h2 {
    letter-spacing: 0;
  }

  .faq {
    padding-right: 16px;
    padding-bottom: 64px;
    padding-left: 16px;
  }

  .faq__list {
    width: 100%;
  }

  .revenue-cta {
    min-height: 280px;
    padding: 48px 20px;
  }

  .revenue-cta h2 {
    font-size: 30px;
    line-height: 37px;
  }

  .revenue-cta p {
    font-size: 14px;
    line-height: 21px;
  }

  .site-footer {
    min-height: 0;
    padding-bottom: calc(108px + env(safe-area-inset-bottom, 0px));
  }

  .site-footer__content {
    width: calc(100% - 40px);
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
  }

  .sticky-cta--visible {
    display: inline-flex;
  }
}

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