body.marketing {
  background: var(--paper);
}

.wrap {
  width: min(1080px, calc(100% - 44px));
  margin-inline: auto;
}

.eyebrow {
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 0;
}

.brand {
  display: flex;
  color: inherit;
  text-decoration: none;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 21px;
  letter-spacing: -.01em;
}

.nav-sp {
  margin-left: auto;
}

.nav .plain {
  color: var(--ink-2);
  font-size: 14.5px;
  text-decoration: none;
}

.nav .plain:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  padding: 34px 0 76px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.hero h1 {
  max-width: 18ch;
  font-size: clamp(33px, 4.3vw, 49px);
  letter-spacing: -.012em;
}

.hero h1 em {
  color: var(--accent);
}

.statement {
  display: flex;
  max-width: 50ch;
  flex-direction: column;
  gap: 20px;
}

.statement p {
  color: var(--ink-2);
}

.statement .ask {
  color: var(--ink);
  font-size: clamp(18px, 1.95vw, 20.5px);
  line-height: 1.5;
}

.figure {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 14px;
}

.figure-frame {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
}

.plate {
  display: block;
  width: 100%;
  height: auto;
}

.timeline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.tl-label {
  margin-right: 2px;
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.tl-btn {
  padding: 7px 11px;
  border: 1px solid var(--line-2);
  border-radius: 2px;
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .06em;
}

.tl-btn:hover {
  border-color: var(--ink-3);
  color: var(--ink);
}

.tl-btn[aria-pressed="true"] {
  border-color: var(--accent);
  background: var(--accent-3);
  color: var(--accent);
}

.figcap {
  color: var(--ink-3);
  font-size: 13.5px;
  line-height: 1.5;
}

.figcap b {
  color: var(--ink-2);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.cta {
  display: inline-block;
  padding: 15px 24px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
  text-decoration: none;
}

.cta:hover {
  border-color: var(--accent-2);
  background: var(--accent-2);
}

.cta:active {
  transform: translateY(1px);
}

.scope {
  max-width: 52ch;
  color: var(--ink-3);
  font-size: 13.5px;
}

.scope b {
  color: var(--ink-2);
  font-weight: 600;
}

.band {
  padding: 66px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 24px;
}

.band-head {
  display: flex;
  max-width: 58ch;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 42px;
}

.band-head h2 {
  font-size: clamp(26px, 3.1vw, 34px);
  letter-spacing: -.01em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 34px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
}

.step .n {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .12em;
}

.step h3 {
  font-size: 20px;
}

.step p {
  color: var(--ink-2);
  font-size: 15px;
}

.get-split {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.appshot-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.appshot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
  box-shadow: 0 1px 2px rgb(23 26 25 / 4%), 0 20px 44px -26px rgb(23 26 25 / 28%);
}

.appshot img {
  display: block;
  width: 100%;
  height: auto;
}

.gets {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.get {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 22px 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
}

.get > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.get h3 {
  font-size: 19px;
}

.get p {
  max-width: 46ch;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.5;
}

.get .tagline {
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.limits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.limit {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-top: 16px;
  border-top: 2px solid var(--line-2);
}

.limit.critical {
  border-top-color: var(--alert);
}

.limit h3 {
  font-family: var(--font-body);
  font-size: 17.5px;
  font-weight: 600;
}

.limit.critical h3 {
  color: var(--alert);
}

.limit p {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
}

.closing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 82px 0 74px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.closing h2 {
  max-width: 19ch;
  font-size: clamp(28px, 3.9vw, 40px);
  letter-spacing: -.01em;
}

.closing p {
  max-width: 44ch;
  color: var(--ink-2);
}

.btn {
  display: inline-block;
  padding: 9px 18px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--paper);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: inherit;
  text-decoration: none;
}

.btn:hover {
  border-color: var(--accent-2);
  background: var(--accent-2);
  color: var(--paper);
}

.btn:active {
  transform: translateY(1px);
}

.foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  padding: 24px 0 54px;
  border-top: 1px solid var(--line);
  color: var(--ink-3);
  font-size: 13px;
}

.foot a {
  color: var(--ink-3);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.foot .sp {
  margin-left: auto;
}

.about {
  display: flex;
  max-width: 1080px;
  flex-direction: column;
  gap: 48px;
  padding: 64px 0 36px;
}

.about-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.about-header h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 38px);
  letter-spacing: -.012em;
  line-height: 1.16;
}

.about-opening {
  display: flex;
  max-width: 640px;
  flex-direction: column;
  gap: 7px;
}

.about .lede {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 23px);
  line-height: 1.45;
}

.about .about-pain {
  color: var(--alert);
}

.about-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 72px;
}

.about-narrative {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.about p {
  color: var(--ink);
}

.about-questions {
  padding: 26px 28px 28px;
  border: 1px solid var(--line);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius);
  background: var(--paper-2);
}

.about-questions ul {
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.about-questions li {
  color: var(--ink-2);
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.4;
}

.about .join {
  margin-top: 14px;
}

.about-enough {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
}

.about .join a {
  display: inline-block;
  padding: 9px 18px;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--paper);
  text-decoration: none;
}

.about .join a:hover {
  border-color: var(--accent-2);
  background: var(--accent-2);
  color: var(--paper);
}

.about-foot {
  margin-top: 72px;
}

.about-who {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 72px;
  margin-top: 36px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}

.about-who-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-who-copy h2 {
  font-size: clamp(25px, 3vw, 31px);
}

.about-who-copy p {
  color: var(--ink-2);
}

.about-who-photo {
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  background: var(--paper-2);
}

.about-who-photo img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 800px) {
  .about-header,
  .about-layout,
  .about-who {
    grid-template-columns: 1fr;
  }

  .about-header {
    align-items: start;
    gap: 24px;
  }

  .about-layout {
    gap: 42px;
  }

  .about-who {
    gap: 18px;
  }
}

.legal {
  display: flex;
  max-width: 640px;
  flex-direction: column;
  gap: 20px;
  padding: 64px 0 36px;
}

.legal-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-effective {
  color: var(--ink-3);
  font-size: 15px;
}

.legal h2 {
  margin-top: 12px;
  font-size: 22px;
}

.legal ul {
  margin: 0;
  padding-left: 22px;
}

.legal li + li {
  margin-top: 4px;
}

.legal a {
  color: var(--accent);
}

.grid-line {
  stroke: var(--line);
  stroke-width: .5;
}

.ghost {
  fill: none;
  stroke: var(--ink-3);
  stroke-width: 1.1;
  stroke-dasharray: 3 3.5;
  opacity: .55;
}

.organ {
  fill: var(--tissue);
  stroke: var(--ink);
  stroke-width: 1.5;
  stroke-linejoin: round;
}

.tube {
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.4;
  stroke-linecap: round;
}

.ovary {
  fill: var(--tissue-2);
  stroke: var(--ink);
  stroke-width: 1.2;
}

.cavity {
  fill: none;
  stroke: var(--ink-2);
  stroke-width: 1;
  stroke-dasharray: 2.5 2.5;
}

.fib circle {
  fill: var(--accent);
  fill-opacity: .82;
  stroke: var(--accent-2);
  stroke-width: 1;
}

.svglabel {
  fill: var(--ink-2);
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: .04em;
}

.svglabel.dim {
  fill: var(--ink-3);
}

.svglabel.key {
  fill: var(--accent);
}

.leader,
.dimline {
  stroke: var(--ink-3);
  stroke-width: .7;
}

.uterus,
.fib {
  transition: transform .85s cubic-bezier(.4, 0, .2, 1);
}

.uterus {
  transform-box: view-box;
  transform-origin: 200px 292px;
}

.fib {
  transform-box: fill-box;
  transform-origin: center;
}

.draws {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: draw 1.1s ease forwards .15s;
}

.fades {
  opacity: 0;
  animation: fade .6s ease forwards;
}

.d1 { animation-delay: .9s; }
.d2 { animation-delay: 1.05s; }
.d3 { animation-delay: 1.2s; }
.d4 { animation-delay: 1.45s; }

@keyframes draw {
  to { stroke-dashoffset: 0; }
}

@keyframes fade {
  to { opacity: 1; }
}

/* Rendered plate (OMA_LANDING_PHOTO_PLATE). Reuses the schematic plate's
   grid, dimension, leader and label styling; only the raster layer is new. */
.plate-photo {
  /* Pull the illustration toward the muted palette with e.g. saturate(.75). */
  --plate-tint: none;
}

.plate-photo .tp {
  opacity: 0;
  filter: var(--plate-tint);
  transition: opacity .5s ease;
}

.plate-photo .tp.is-on {
  opacity: 1;
}

.plate-photo .fib-ring {
  fill: none;
  stroke: var(--accent);
  stroke-width: .9;
  stroke-dasharray: 2.5 2.5;
  opacity: .75;
}

/* Resting state is the revealed plate, so the illustration still shows if
   animation never runs; `backwards` holds it hidden through the delay. */
.plate-photo .wiper {
  transform: translateY(356px);
  animation: plate-wipe 1.15s cubic-bezier(.4, 0, .2, 1) .15s backwards;
}

@keyframes plate-wipe {
  from { transform: translateY(0); }
}

@media (min-width: 700px) {
  .gets {
    grid-template-columns: 1fr 1fr;
  }

  .get:first-child {
    grid-column: span 2;
  }
}

@media (min-width: 940px) {
  .hero {
    grid-template-areas: "copy figure" "cta cta";
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 44px 68px;
    padding: 52px 0 88px;
  }

  .hero-copy { grid-area: copy; }
  .hero .figure { grid-area: figure; }
  .hero-cta { grid-area: cta; }
}

@media (min-width: 1000px) {
  .gets {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .wrap {
    width: min(100% - 30px, 1080px);
  }

  .nav {
    gap: 14px;
  }

  .nav .plain {
    font-size: 13px;
  }

  .foot .sp {
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .nav .plain:not(:last-child) {
    display: none;
  }

  .hero {
    padding-top: 22px;
  }

  .band {
    padding: 54px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .draws {
    animation: none;
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }

  .fades {
    animation: none;
    opacity: 1;
  }

  .uterus,
  .fib {
    transition: none;
  }

  .plate-photo .wiper {
    animation: none;
  }

  .plate-photo .tp {
    transition: none;
  }
}
