:root {
  --black: #1a1a1a;
  --black-2: #151515;
  --white: #ffffff;
  --light: #f7f7f5;
  --muted: #9b9b9b;
  --line-dark: rgba(255, 255, 255, 0.105);
  --line-light: rgba(0, 0, 0, 0.13);
  --cyan: #00d9ef;
  --mint: #00e4c6;
  --orange: #e99d16;
  --font-sans: "Instrument Sans", Inter, system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  overflow: clip;
}

.site-nav {
  position: fixed;
  z-index: 30;
  top: 20px;
  left: 50%;
  width: min(528px, calc(100vw - 40px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  color: #fff;
}

.brand {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(28, 28, 28, 0.55);
  backdrop-filter: blur(15px);
  font-size: 18px;
  font-weight: 700;
}

.brand img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.pill-nav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.pill-nav a,
.outline-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 16px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.02)),
    rgba(22, 22, 22, 0.78);
  box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  transition: transform 280ms ease, border-color 280ms ease, background 280ms ease;
}

.pill-nav a:hover,
.outline-btn:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
}

.menu-toggle {
  display: none;
}

.dark-grid,
.light-section {
  position: relative;
}

.dark-grid {
  background-color: var(--black);
  background-image:
    linear-gradient(var(--line-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 360px 100%, 100% 100%;
}

.dark-grid::after,
.light-section::after,
.dot-field::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(currentColor 1.4px, transparent 1.4px);
  background-size: 34px 34px;
  opacity: 0.36;
  color: #fff;
  mask-image: linear-gradient(180deg, #000 0, transparent 130px);
}

.dot-field::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle 86px at var(--mx, 50%) var(--my, 50%), rgba(0, 217, 239, 0.28), transparent 68%);
  transition: opacity 180ms ease;
}

.dot-field.has-pointer::before {
  opacity: 1;
}

.light-section::after,
.dot-field::after {
  color: #111;
  opacity: 0.55;
}

.hero {
  min-height: 1064px;
  padding: 248px 20px 64px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(480px, 1fr);
  align-items: end;
  gap: clamp(40px, 7vw, 120px);
  max-width: 1160px;
  min-height: 720px;
  margin: 0 auto;
}

.hero-copy {
  min-height: 600px;
  display: flex;
  flex-direction: column;
}

.hero-title {
  margin: 0 0 20px;
  font-size: clamp(82px, 8vw, 112px);
  line-height: 0.88;
  font-weight: 700;
  letter-spacing: 0;
}

.rx-title span {
  display: inline-block;
  animation: titleIn 760ms cubic-bezier(0.2, 0.7, 0.1, 1) both;
  animation-delay: calc(var(--i) * 45ms);
}

.rx-title:hover span {
  animation: titleWave 900ms cubic-bezier(0.2, 0.7, 0.1, 1) both;
  animation-delay: calc(var(--i) * 40ms);
}

.hero-kicker {
  max-width: 520px;
  margin: 0 0 18px;
  color: #fff;
  font-size: 16px;
  line-height: 1.45;
}

.hero-body {
  max-width: 530px;
  margin: 0;
  color: #a7a7a7;
  font-size: 17px;
  line-height: 1.45;
}

.hero-actions {
  display: grid;
  width: 214px;
  gap: 12px;
  margin-top: auto;
  margin-bottom: 102px;
}

.outline-btn {
  min-height: 40px;
  width: max-content;
  padding: 0 18px;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  font-weight: 700;
}

.connect-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 220px;
  color: #adadad;
  font-size: 16px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.socials a {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border: 1.5px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}

.hero-media {
  align-self: center;
  transform: translateY(72px);
}

.media-frame {
  aspect-ratio: 1.39 / 1;
  overflow: hidden;
  background: #02020b;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder {
  position: relative;
}

.torus-placeholder {
  background:
    radial-gradient(ellipse at 48% 54%, #010209 0 24%, transparent 25%),
    radial-gradient(ellipse at 48% 54%, transparent 0 30%, rgba(255, 255, 255, 0.9) 31%, #0a0a0d 39%, #02030b 54%, transparent 55%),
    radial-gradient(ellipse at 37% 38%, rgba(255, 255, 255, 0.88), transparent 16%),
    #03040b;
  filter: contrast(1.08);
}

.video-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42)),
    radial-gradient(circle at 42% 45%, transparent 30%, rgba(0, 0, 0, 0.22) 72%);
}

.source-row {
  display: flex;
  justify-content: space-around;
  gap: 24px;
  margin-top: 44px;
  color: rgba(255, 255, 255, 0.22);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.light-noise {
  position: relative;
  overflow: hidden;
  background:
    url("/assets/pink-gradient.svg") left bottom / 120% 510px no-repeat,
    #f7f7f5;
  color: #191919;
}

.light-noise::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    radial-gradient(rgba(0, 0, 0, 0.7) 0.55px, transparent 0.75px),
    radial-gradient(rgba(255, 255, 255, 0.8) 0.55px, transparent 0.75px);
  background-size: 3px 3px, 5px 5px;
  mix-blend-mode: multiply;
}

.problem {
  padding: 94px 20px 54px;
}

.problem-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  min-height: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
}

.image-stack {
  position: relative;
  min-height: 600px;
}

.image-card {
  position: absolute;
  overflow: hidden;
  border-radius: 6px;
  background: #111;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card-small {
  width: 228px;
  height: 244px;
}

.image-card-small.top {
  left: 0;
  top: 0;
}

.image-card-wide {
  width: 356px;
  height: 356px;
  left: 228px;
  top: 173px;
}

.image-card-small.bottom {
  left: 0;
  top: 480px;
}

.problem-copy {
  align-self: start;
  padding-top: 8px;
}

.problem-text {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 64px);
  line-height: 1.13;
  letter-spacing: 0;
}

.letter-reveal .char {
  color: rgba(25, 25, 25, 0.25);
  transition: color 420ms ease;
}

.letter-reveal.is-visible .char {
  color: rgba(25, 25, 25, 1);
  transition-delay: calc(var(--i) * 10ms);
}

.metric-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  max-width: 600px;
  margin: 28px calc((100vw - min(1160px, calc(100vw - 40px))) / 2) 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.metric-card {
  min-height: 188px;
  padding: 28px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.45;
}

.metric-card:first-child {
  border-left: 0;
}

.metric-card strong {
  font-family: var(--font-sans);
  font-size: 48px;
  line-height: 0.95;
  font-weight: 500;
}

.problem-label {
  font-size: 13px;
}

.platform {
  padding: 54px 20px 298px;
  background: #fff;
  color: #060606;
}

.title-block {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  min-height: 250px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  padding-top: 18px;
  overflow: hidden;
}

.title-block h2 {
  margin: 0;
  font-size: clamp(94px, 11vw, 128px);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.title-block.white h2 {
  color: #fff;
}

.section-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-left: 6px;
  place-items: center;
  vertical-align: 54%;
  border: 4px solid currentColor;
  border-radius: 50%;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.platform-list {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 12px auto 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.platform-item {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(260px, 0.9fr) minmax(360px, 1.1fr) 42px;
  align-items: center;
  min-height: 96px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #090909;
  transition: background 260ms ease, color 260ms ease;
}

.platform-item:first-child {
  border-top: 0;
}

.platform-item::before,
.platform-item::after {
  content: "+";
  position: absolute;
  top: -8px;
  color: #aaa;
  font-size: 18px;
}

.platform-item::before {
  left: 31.7%;
}

.platform-item::after {
  right: 11%;
}

.platform-item:hover {
  background: #f3f3f1;
}

.platform-item h3,
.platform-item p,
.platform-item span,
.platform-item .arrow {
  position: relative;
  z-index: 1;
}

.item-number {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
}

.platform-item h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 500;
}

.platform-item p {
  max-width: 410px;
  margin: 0;
  color: #666;
  font-size: 16px;
  line-height: 1.35;
}

.arrow {
  justify-self: end;
  color: #777;
  font-size: 28px;
}

.platform-image {
  display: none;
}

.rxguard,
.benchmarks,
.roadmap,
.faq {
  padding: 80px 20px 0;
}

.section-wrap {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
}

.rxguard-copy {
  max-width: 790px;
  margin-top: 32px;
}

.rxguard-copy h3 {
  margin: 0 0 44px;
  font-size: 42px;
  line-height: 1.16;
  font-weight: 800;
}

.rxguard-copy p {
  margin: 0;
  max-width: 760px;
  color: #aaa;
  font-size: 18px;
  line-height: 1.45;
}

.guard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 16px;
  margin-top: 64px;
}

.guard-grid article {
  display: grid;
  grid-template-columns: 30px minmax(170px, 0.7fr) 1fr 28px;
  align-items: center;
  min-height: 110px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.guard-grid span {
  font-family: var(--font-mono);
  color: #fff;
  font-size: 13px;
}

.guard-grid h4 {
  margin: 0;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 500;
}

.guard-grid p {
  margin: 0;
  color: #a5a5a5;
  font-size: 16px;
  line-height: 1.35;
}

.guard-grid b {
  color: #aaa;
  font-size: 24px;
}

.formula {
  margin: 42px 0 130px;
  padding: 20px 28px;
  border: 1px solid var(--cyan);
  border-radius: 12px;
  font-size: 17px;
  line-height: 1.4;
}

.formula strong {
  color: var(--cyan);
  font-family: var(--font-mono);
}

.benchmarks {
  padding-top: 96px;
}

.section-intro {
  max-width: 860px;
  margin: -24px auto 42px;
  color: #999;
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
}

.benchmark-table {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.benchmark-table > div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  min-height: 72px;
  padding: 20px 16px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #a4a4a4;
  line-height: 1.35;
}

.benchmark-table .table-head {
  border-top: 0;
  color: var(--cyan);
  font-weight: 800;
  text-transform: uppercase;
}

.benchmark-table strong,
.benchmark-table p {
  margin: 0;
  color: #d8d8d8;
}

.benchmark-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.benchmark-panels article,
.process-grid article,
.roadmap-grid article {
  padding: 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.benchmark-panels h3 {
  margin: 0 0 22px;
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 14px;
  text-transform: uppercase;
}

.benchmark-panels ul {
  margin: 0;
  padding-left: 22px;
  color: #9d9d9d;
  line-height: 1.45;
}

.benchmark-panels p {
  margin: -8px 0 18px;
  color: #999;
  font-style: italic;
}

dl {
  margin: 0;
}

dl div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

dt {
  color: #ccc;
}

dd {
  margin: 0;
  color: var(--orange);
  font-family: var(--font-mono);
  font-weight: 800;
  text-align: right;
}

.roadmap {
  padding-top: 148px;
}

.process-heading {
  margin: 0 0 46px;
  font-size: 39px;
  line-height: 1.1;
}

.process-grid,
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 90px;
}

.roadmap-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: -18px;
  margin-bottom: 96px;
}

.process-grid article,
.roadmap-grid article {
  min-height: 170px;
  border-radius: 8px;
}

.process-grid span,
.roadmap-grid span {
  color: var(--cyan);
  font-family: var(--font-mono);
  font-weight: 800;
}

.process-grid h3,
.roadmap-grid h3 {
  margin: 18px 0 14px;
  color: #bdbdbd;
  font-size: 19px;
  line-height: 1.1;
}

.process-grid p,
.roadmap-grid p {
  margin: 0;
  color: #5e5e5e;
  line-height: 1.35;
}

.process-grid b {
  color: var(--cyan);
}

.faq {
  padding: 120px 20px;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) 1.15fr;
  gap: 90px;
  align-items: start;
}

.faq h2 {
  margin: 0 0 24px;
  font-size: 46px;
  line-height: 1.05;
}

.faq p {
  margin: 0 0 32px;
  color: #aaa;
  font-size: 18px;
  line-height: 1.45;
}

.accordion {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.accordion button {
  width: 100%;
  min-height: 64px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #fff;
  font: 600 20px/1.2 var(--font-sans);
  text-align: left;
  cursor: pointer;
}

.accordion button::after {
  content: "+";
  float: right;
  color: var(--cyan);
}

.accordion button[aria-expanded="true"]::after {
  content: "−";
}

.accordion div {
  display: none;
  padding: 0 0 24px;
  color: #aaa;
  line-height: 1.5;
}

.accordion button[aria-expanded="true"] + div {
  display: block;
}

.site-footer {
  padding: 44px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}

.footer-brand,
.wellthora {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 26px;
}

.site-footer nav {
  display: flex;
  gap: 24px;
  color: #aaa;
  font-size: 14px;
}

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

.wellthora {
  justify-self: end;
  color: #aaa;
  font-size: 13px;
}

.wellthora img {
  width: 32px;
}

.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 900ms ease, transform 900ms cubic-bezier(0.2, 0.7, 0.1, 1);
}

.reveal-up.is-visible,
[data-section].is-visible .reveal-up {
  opacity: 1;
  transform: translateY(0);
}

@keyframes titleIn {
  from {
    opacity: 0;
    transform: translateY(0.35em);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleWave {
  0%,
  100% {
    transform: translateY(0);
  }
  35% {
    transform: translateY(-0.12em);
  }
}

@media (max-width: 900px) {
  .site-nav {
    top: 0;
    left: 0;
    width: 100%;
    transform: none;
    grid-template-columns: 1fr auto;
    padding: 18px 20px;
    background: rgba(26, 26, 26, 0.94);
    backdrop-filter: blur(14px);
  }

  .brand {
    justify-content: flex-start;
    height: auto;
    border: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .brand img {
    width: 18px;
    height: 18px;
  }

  .pill-nav {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 72px;
    display: none;
    grid-template-columns: 1fr;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: rgba(22, 22, 22, 0.96);
  }

  .site-nav.menu-open .pill-nav {
    display: grid;
  }

  .menu-toggle {
    display: grid;
    width: 28px;
    height: 24px;
    padding: 0;
    align-self: center;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: #fff;
  }

  .hero {
    min-height: auto;
    padding: 126px 20px 72px;
  }

  .hero-inner {
    display: block;
    min-height: 0;
  }

  .hero-copy {
    min-height: 0;
  }

  .hero-title {
    font-size: 50px;
    margin-bottom: 18px;
  }

  .hero-kicker,
  .hero-body {
    font-size: 16px;
  }

  .hero-actions {
    width: 212px;
    margin-top: 80px;
    margin-bottom: 34px;
  }

  .connect-line {
    max-width: 210px;
    margin-bottom: 92px;
  }

  .hero-media {
    transform: none;
  }

  .source-row {
    margin-top: 36px;
    gap: 24px;
    overflow: hidden;
    justify-content: flex-start;
  }

  .problem {
    padding-top: 20px;
  }

  .problem-inner {
    display: block;
    min-height: 0;
  }

  .image-stack {
    min-height: 360px;
  }

  .image-card-small {
    width: 137px;
    height: 149px;
  }

  .image-card-small.top {
    top: 0;
  }

  .image-card-wide {
    width: 212px;
    height: 212px;
    left: 137px;
    top: 84px;
  }

  .image-card-small.bottom {
    top: 250px;
  }

  .problem-text {
    margin-top: 42px;
    font-size: 26px;
    line-height: 1.16;
  }

  .metric-grid {
    grid-template-columns: 1fr 1fr;
    max-width: none;
    margin: 32px 0 0;
  }

  .metric-card {
    min-height: 154px;
    padding: 20px 12px;
  }

  .metric-card:nth-child(odd) {
    border-left: 0;
  }

  .metric-card strong {
    font-size: 28px;
  }

  .platform {
    padding: 42px 20px 88px;
  }

  .title-block {
    min-height: 112px;
    padding-top: 8px;
  }

  .title-block h2 {
    font-size: 48px;
  }

  .section-number {
    width: 24px;
    height: 24px;
    border-width: 3px;
    font-size: 16px;
    vertical-align: 46%;
  }

  .platform-list {
    margin-top: 22px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .platform-item {
    display: block;
    min-height: 0;
    padding: 38px 0 42px;
    text-align: center;
  }

  .platform-item::before,
  .platform-item::after,
  .platform-item .arrow {
    display: none;
  }

  .platform-image {
    display: block;
    width: 100%;
    aspect-ratio: 1.32 / 1;
    margin-bottom: 26px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f8f8, #e9f5f2 50%, #ffffff);
  }

  .platform-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .placeholder-media {
    background:
      radial-gradient(circle at 70% 55%, rgba(0, 221, 230, 0.9), transparent 2px),
      linear-gradient(135deg, #f8f8f8, #e9f2ee 55%, #ffffff);
  }

  .item-number {
    display: block;
    margin-bottom: 24px;
  }

  .platform-item h3 {
    color: var(--mint);
    font-size: 21px;
  }

  .platform-item p {
    max-width: 320px;
    margin: 18px auto 0;
    color: #111;
  }

  .rxguard,
  .benchmarks,
  .roadmap,
  .faq {
    padding-left: 20px;
    padding-right: 20px;
  }

  .rxguard {
    padding-top: 40px;
  }

  .rxguard-copy h3 {
    font-size: 38px;
  }

  .rxguard-copy p {
    font-size: 19px;
  }

  .guard-grid,
  .benchmark-panels,
  .process-grid,
  .roadmap-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .guard-grid article {
    grid-template-columns: 32px 1fr 28px;
    gap: 12px;
  }

  .guard-grid p {
    grid-column: 2 / 3;
    margin-top: 12px;
  }

  .formula {
    margin-bottom: 72px;
  }

  .benchmarks {
    padding-top: 64px;
  }

  .benchmark-table {
    overflow-x: auto;
  }

  .benchmark-table > div {
    min-width: 760px;
  }

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

  .process-grid,
  .roadmap-grid {
    gap: 14px;
  }

  .faq {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .faq h2 {
    font-size: 36px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .site-footer nav,
  .wellthora {
    justify-self: start;
    flex-wrap: wrap;
  }
}

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