@font-face {
  font-family: "Roboto Condensed";
  src: url("../RobotoCondensed-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("../RobotoCondensed-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: light;
  --pink: #ff5c8a;
  --pink-strong: #df315f;
  --pink-soft: #ffe2eb;
  --blue: #54bde9;
  --blue-soft: #e6f7ff;
  --ink: #1d2027;
  --muted: #606773;
  --line: #d9dee7;
  --paper: #ffffff;
  --canvas: #f5f7fa;
  --warning: #fff4cf;
  --warning-line: #d39d17;
  --content: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--pink-strong);
  text-underline-offset: 3px;
}

a:hover {
  color: #b91f49;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217, 222, 231, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.nav-shell {
  width: min(var(--content), calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pink-strong);
  font-size: 23px;
  font-weight: 700;
  text-decoration: none;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a {
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--pink-strong);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 3px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 112px));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  isolation: isolate;
}

.hero-background {
  position: absolute;
  inset: -20% 0;
  width: 100%;
  height: 140%;
  object-fit: cover;
  object-position: 50% 28%;
  opacity: 0.08;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(255, 255, 255, 0.66);
}

.hero-inner {
  width: min(920px, calc(100% - 40px));
  min-height: inherit;
  margin: 0 auto;
  padding: 72px 0 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-mark {
  width: 108px;
  height: 108px;
  margin-bottom: 20px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--pink-strong);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--pink);
  font-size: 96px;
  font-weight: 700;
}

h2 {
  margin-bottom: 16px;
  font-size: 54px;
}

h3 {
  margin-bottom: 8px;
  font-size: 25px;
}

.hero-copy {
  max-width: 700px;
  margin: 0;
  color: #3e444e;
  font-size: 27px;
  line-height: 1.35;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.button {
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  text-decoration: none;
}

.button-primary {
  background: var(--pink);
  color: #191b21;
}

.button-primary:hover {
  background: #f64d7d;
  color: #111318;
}

.button-secondary {
  border-color: #9ba2ad;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--pink);
  color: var(--pink-strong);
}

.adult-note {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.adult-note::before {
  content: "18+";
  padding: 3px 6px;
  border: 1px solid var(--pink);
  border-radius: 4px;
  color: var(--pink-strong);
}

.section {
  padding: 92px 0;
}

.section-paper {
  background: var(--paper);
}

.section-blue {
  background: var(--blue-soft);
}

.section-pink {
  background: var(--pink-soft);
}

.section-inner {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 21px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.screenshot-item {
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 34px rgba(28, 35, 48, 0.08);
}

.screenshot-item img {
  width: 100%;
  border-radius: 4px;
}

.screenshot-item figcaption {
  padding: 12px 5px 4px;
  color: var(--muted);
  font-size: 15px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.feature {
  border-top: 3px solid var(--blue);
  padding-top: 18px;
}

.feature:nth-child(even) {
  border-top-color: var(--pink);
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.product-showcase,
.workflow-band {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}

.workflow-band-reverse {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
}

.phone-shot {
  width: min(100%, 470px);
  margin: 0 auto;
}

.phone-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 1080 / 2220;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 48px rgba(28, 35, 48, 0.13);
}

.phone-shot figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  text-align: center;
}

.capability-list {
  border-top: 1px solid var(--line);
}

.capability-list div {
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(150px, 0.55fr) minmax(0, 1fr);
  gap: 26px;
}

.capability-list strong {
  font-size: 22px;
}

.capability-list span,
.workflow-copy p {
  color: var(--muted);
}

.workflow-copy {
  max-width: 650px;
}

.plain-checks {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.plain-checks li {
  position: relative;
  padding: 12px 0 12px 34px;
  border-bottom: 1px solid rgba(96, 103, 115, 0.22);
}

.plain-checks li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 3px;
  width: 11px;
  height: 11px;
  border: 3px solid var(--pink);
  border-radius: 50%;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(29, 32, 39, 0.2);
}

.steps > div {
  padding: 28px 32px 8px 0;
  border-right: 1px solid rgba(29, 32, 39, 0.2);
}

.steps > div + div {
  padding-left: 32px;
}

.steps > div:last-child {
  border-right: 0;
}

.steps span {
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  border: 1px solid var(--pink-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--pink-strong);
  font-weight: 700;
}

.steps strong {
  display: block;
  font-size: 25px;
}

.steps p {
  color: var(--muted);
}

.feature-grid-compact {
  gap: 42px;
}

.connect-steps {
  margin-top: 30px;
  border-top: 1px solid rgba(29, 32, 39, 0.2);
}

.connect-steps > div {
  padding: 18px 0;
  border-bottom: 1px solid rgba(29, 32, 39, 0.2);
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.connect-steps span {
  width: 30px;
  height: 30px;
  border: 1px solid var(--pink-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--pink-strong);
  font-weight: 700;
}

.connect-steps p {
  margin: 1px 0 0;
}

.connect-steps strong {
  margin-right: 5px;
  color: var(--ink);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 70px;
  align-items: start;
}

.fact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fact-list li {
  padding: 17px 0;
  border-bottom: 1px solid rgba(96, 103, 115, 0.24);
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
}

.fact-list li::before {
  content: "";
  width: 11px;
  height: 11px;
  margin-top: 8px;
  border: 3px solid var(--pink);
  border-radius: 50%;
}

.legal-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(29, 32, 39, 0.24);
  border-left: 1px solid rgba(29, 32, 39, 0.24);
}

.legal-links a {
  min-height: 112px;
  padding: 20px;
  border-right: 1px solid rgba(29, 32, 39, 0.24);
  border-bottom: 1px solid rgba(29, 32, 39, 0.24);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.legal-links a span {
  color: var(--pink-strong);
  font-size: 16px;
}

.legal-links a:hover {
  background: rgba(255, 255, 255, 0.42);
}

.page-hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.page-hero-inner {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
}

.page-hero h1 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 72px;
}

.page-hero p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 21px;
}

.legal-layout {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 62px 0 100px;
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 62px;
  justify-content: center;
  align-items: start;
}

.toc {
  position: sticky;
  top: 104px;
}

.toc strong {
  display: block;
  margin-bottom: 12px;
  font-size: 15px;
  text-transform: uppercase;
}

.toc a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
  text-decoration: none;
}

.toc a:hover {
  color: var(--pink-strong);
}

.legal-content {
  min-width: 0;
}

.legal-content section {
  padding: 0 0 34px;
  scroll-margin-top: 100px;
}

.legal-content h2 {
  margin-bottom: 12px;
  font-size: 31px;
}

.legal-content p,
.legal-content li {
  color: #3e444e;
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
}

.publication-warning {
  margin-bottom: 34px;
  padding: 16px 18px;
  border: 1px solid var(--warning-line);
  border-radius: var(--radius);
  background: var(--warning);
  color: #5d4708;
  font-size: 16px;
}

.provider-block {
  margin-bottom: 38px;
  padding: 20px;
  border-left: 4px solid var(--pink);
  background: var(--paper);
}

.provider-block p {
  margin: 4px 0;
}

.placeholder {
  color: #9b2d24;
  font-weight: 700;
}

.support-grid {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 100px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.support-block {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.support-block p:last-child {
  margin-bottom: 0;
}

.support-block-wide {
  grid-column: 1 / -1;
}

details {
  border-top: 1px solid var(--line);
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  padding: 17px 0;
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin-top: 0;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #17191f;
  color: #e8eaf0;
}

.footer-inner {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  padding: 38px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.footer-brand img {
  width: 36px;
  height: 36px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.footer-links a {
  color: #e8eaf0;
  font-size: 15px;
  text-decoration: none;
}

.footer-meta {
  margin-top: 4px;
  color: #aeb4bf;
  font-size: 14px;
}

.footer-legal {
  max-width: 650px;
  margin-top: 8px;
  color: #8f96a3;
  font-size: 13px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 73px 0 auto 0;
    max-height: 0;
    overflow: hidden;
    display: block;
    background: var(--paper);
    box-shadow: 0 20px 28px rgba(28, 35, 48, 0.12);
    transition: max-height 220ms ease;
  }

  .site-nav.is-open {
    max-height: calc(100vh - 73px);
  }

  .site-nav a {
    display: block;
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

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

  .feature-grid,
  .legal-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-band {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product-showcase,
  .workflow-band,
  .workflow-band-reverse {
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 42px;
  }

  .legal-layout {
    grid-template-columns: minmax(0, 760px);
  }

  .toc {
    position: static;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }

  .toc a {
    display: inline-block;
    margin-right: 14px;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 17px;
  }

  .nav-shell,
  .section-inner,
  .page-hero-inner,
  .legal-layout,
  .support-grid,
  .footer-inner,
  .hero-inner {
    width: min(calc(100% - 28px), var(--content));
  }

  .brand {
    font-size: 21px;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    min-height: 0;
    padding: 32px 0 28px;
  }

  .hero-mark {
    width: 88px;
    height: 88px;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 38px;
  }

  .page-hero h1 {
    font-size: 46px;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    font-size: 21px;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 100%;
  }

  .adult-note {
    justify-content: center;
    text-align: left;
  }

  .section {
    padding: 68px 0;
  }

  .screenshot-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 14px 14px;
    margin: 0 -14px;
  }

  .screenshot-item {
    min-width: min(78vw, 310px);
    scroll-snap-align: center;
  }

  .feature-grid,
  .legal-links,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .product-showcase,
  .workflow-band,
  .workflow-band-reverse {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .workflow-band-reverse .phone-shot {
    order: 2;
  }

  .workflow-band-reverse .workflow-copy {
    order: 1;
  }

  .phone-shot {
    width: min(100%, 420px);
  }

  .capability-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

  .steps > div,
  .steps > div + div {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(29, 32, 39, 0.2);
  }

  .steps > div:last-child {
    border-bottom: 0;
  }

  .support-block-wide {
    grid-column: auto;
  }

  .page-hero {
    padding: 52px 0 40px;
  }

  .legal-layout {
    padding: 40px 0 72px;
    gap: 38px;
  }

  .legal-content h2 {
    font-size: 28px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
