:root {
  --background: #180611;
  --background-deep: #0f030a;
  --background-elevated: #2a0b1b;
  --card: rgba(48, 12, 31, 0.84);
  --card-strong: rgba(58, 14, 37, 0.94);
  --card-soft: rgba(255, 164, 202, 0.11);
  --border: rgba(255, 190, 214, 0.19);
  --border-bright: rgba(255, 190, 214, 0.38);
  --cream: #fff1f7;
  --text: #fff7fa;
  --text-dim: #f2c8d9;
  --muted: #cfa4b8;
  --pink: #ff5c9a;
  --pink-bright: #ff8fbd;
  --pink-soft: #ffb7d1;
  --peach: #ffc0d4;
  --lavender: #dfa0c4;
  --purple: #b38cff;
  --blue: #8fe7ff;
  --danger: #f23b5f;
  --on-accent: #210612;
  --shadow: 0 28px 80px rgba(8, 0, 5, 0.44);
  --glow: 0 0 70px rgba(255, 92, 154, 0.22);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --radius-xl: 48px;
  --shell: min(1180px, calc(100vw - 48px));
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 2%, rgba(255, 92, 154, 0.17), transparent 30rem),
    radial-gradient(circle at 88% 20%, rgba(179, 140, 255, 0.11), transparent 34rem),
    linear-gradient(180deg, var(--background) 0%, var(--background-deep) 100%);
  color: var(--text);
  font-family: ui-rounded, "Avenir Next", Avenir, "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.013) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.013) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 72%);
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

::selection {
  background: var(--pink);
  color: var(--on-accent);
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--pink-soft);
}

a:focus-visible,
summary:focus-visible,
[role="link"]:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand {
  font-family: ui-rounded, "Avenir Next Rounded", "Avenir Next", Avenir, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2,
h3 {
  color: var(--cream);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  font-size: clamp(3.35rem, 7.4vw, 6.7rem);
  font-weight: 850;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 820;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 800;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--cream);
  color: var(--background);
  font-weight: 800;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 190, 214, 0.11);
  background: rgba(24, 6, 17, 0.76);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  backdrop-filter: blur(22px) saturate(145%);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header-scrolled {
  background: rgba(24, 6, 17, 0.9);
  box-shadow: 0 14px 40px rgba(6, 0, 4, 0.2);
}

.header-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-size: 1.25rem;
  font-weight: 850;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand:hover {
  color: var(--cream);
}

.brand img {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(9, 0, 6, 0.28);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3.2vw, 38px);
}

.site-nav a {
  position: relative;
  color: var(--text-dim);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--pink), var(--pink-soft));
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero {
  display: grid;
  min-height: calc(100svh - 82px);
  align-items: center;
  grid-template-columns: minmax(0, 1fr);
  padding-block: clamp(72px, 10vw, 142px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--pink-bright);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 28px;
  max-width: 820px;
}

.hero h1 span {
  background: linear-gradient(92deg, var(--pink-bright), var(--peach) 58%, var(--lavender));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 34px;
  color: var(--text-dim);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  line-height: 1.7;
}

.hero-actions,
.support-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.coming-soon-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid var(--border-bright);
  border-radius: 999px;
  background: rgba(255, 183, 209, 0.08);
  color: var(--text-dim);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  user-select: none;
}


.quiet-link,
.text-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.quiet-link {
  color: var(--text-dim);
  text-underline-offset: 0.3em;
}

.text-button {
  padding: 12px 20px;
  border: 1px solid var(--border-bright);
  background: rgba(255, 183, 209, 0.08);
  color: var(--cream);
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.text-button:hover {
  border-color: var(--pink-soft);
  background: rgba(255, 183, 209, 0.15);
  color: var(--cream);
  transform: translateY(-2px);
}

.platform-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}


.signal-strip {
  border-block: 1px solid var(--border);
  background: rgba(255, 164, 202, 0.045);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.signal-grid p {
  display: grid;
  min-height: 136px;
  align-content: center;
  gap: 6px;
  margin: 0;
  padding: 28px clamp(22px, 3.6vw, 50px);
  border-right: 1px solid var(--border);
}

.signal-grid p:first-child {
  padding-left: 0;
}

.signal-grid p:last-child {
  padding-right: 0;
  border-right: 0;
}

.signal-grid strong {
  color: var(--cream);
  font-size: 1rem;
}

.signal-grid span {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.5;
}

.section {
  padding-block: clamp(88px, 11vw, 150px);
}

.section + .section {
  padding-top: 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto clamp(42px, 6vw, 70px);
  text-align: center;
}

.section-heading h2 {
  margin-bottom: 20px;
}

.section-heading > p:last-child,
.section-copy > p:not(.eyebrow),
.privacy-panel-copy > p,
.launch-card p,
.page-lede {
  color: var(--text-dim);
  font-size: 1.08rem;
}

.section-heading-left {
  margin-inline: 0;
  text-align: left;
}

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

.feature-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  padding: clamp(30px, 4.2vw, 52px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 164, 202, 0.09), transparent 50%),
    var(--card);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.045);
}

.feature-card::after {
  position: absolute;
  width: 240px;
  height: 240px;
  right: -115px;
  bottom: -130px;
  border-radius: 50%;
  background: rgba(255, 92, 154, 0.09);
  content: "";
  filter: blur(4px);
}

.feature-card-large {
  min-height: 410px;
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at 83% 34%, rgba(255, 92, 154, 0.16), transparent 25rem),
    linear-gradient(145deg, rgba(255, 164, 202, 0.09), transparent 45%),
    var(--card);
}

.feature-card h3 {
  max-width: 600px;
  margin-top: 52px;
}

.feature-card p:not(.card-index):not(.card-whisper) {
  position: relative;
  z-index: 1;
  max-width: 610px;
  color: var(--text-dim);
  font-size: 1.04rem;
}

.card-index {
  color: var(--pink-bright);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card-whisper {
  position: absolute;
  right: clamp(30px, 4.2vw, 52px);
  bottom: clamp(24px, 3.6vw, 42px);
  left: clamp(30px, 4.2vw, 52px);
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.83rem;
}

.phase-row {
  position: absolute;
  right: clamp(30px, 4.2vw, 52px);
  bottom: clamp(28px, 4vw, 50px);
  left: clamp(30px, 4.2vw, 52px);
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  grid-template-columns: 5fr 5fr 5fr 13fr;
}

.phase-row span {
  padding: 9px 8px;
  color: var(--background);
  font-size: clamp(0.65rem, 1.2vw, 0.77rem);
  font-weight: 850;
  text-align: center;
}

.phase-row span:nth-child(1) { background: #e63b63; color: #fff; }
.phase-row span:nth-child(2) { background: #ffd6e5; }
.phase-row span:nth-child(3) { background: #b38cff; color: #fff; }
.phase-row span:nth-child(4) { background: #b95c86; color: #fff; }

.section-split {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(58px, 9vw, 130px);
}

.section-copy {
  position: sticky;
  top: 132px;
}

.section-copy .text-button {
  margin-top: 16px;
}

.steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  min-height: 176px;
  align-items: start;
  padding: 38px 0;
  border-bottom: 1px solid var(--border);
  grid-template-columns: 62px 1fr;
  gap: 22px;
}

.steps li:first-child {
  border-top: 1px solid var(--border);
}

.steps li > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--border-bright);
  border-radius: 50%;
  color: var(--pink-bright);
  font-weight: 850;
}

.steps strong {
  display: block;
  margin-bottom: 7px;
  color: var(--cream);
  font-size: 1.25rem;
}

.steps p {
  margin: 0;
  color: var(--text-dim);
}

.privacy-panel {
  display: grid;
  overflow: hidden;
  padding: clamp(38px, 6vw, 76px);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 92, 154, 0.2), transparent 27rem),
    radial-gradient(circle at 100% 100%, rgba(179, 140, 255, 0.13), transparent 28rem),
    var(--card-strong);
  box-shadow: var(--shadow);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(42px, 8vw, 108px);
}

.privacy-panel h2 {
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
}

.privacy-panel-copy {
  align-self: end;
}

.privacy-links {
  display: flex;
  margin-top: 28px;
  gap: 14px 26px;
  flex-wrap: wrap;
}

.privacy-links a {
  color: var(--pink-soft);
  font-weight: 800;
}

.launch-card {
  display: grid;
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  border-block: 1px solid var(--border);
  grid-template-columns: auto 1fr auto;
  gap: 28px;
}

.launch-card > img {
  border: 1px solid var(--border-bright);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(7, 0, 5, 0.35);
}

.launch-card h2 {
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 3vw, 2.65rem);
}

.launch-card p {
  margin-bottom: 0;
}

.launch-card .eyebrow {
  margin-bottom: 8px;
  font-size: 0.68rem;
}

.coming-soon-button-small {
  min-height: 46px;
}

.medical-note {
  display: grid;
  margin-bottom: clamp(72px, 9vw, 120px);
  padding: 26px 30px;
  border: 1px solid rgba(255, 208, 168, 0.22);
  border-radius: var(--radius-md);
  background: rgba(255, 208, 168, 0.055);
  grid-template-columns: minmax(180px, 0.35fr) 1fr;
  gap: 28px;
}

.medical-note strong {
  color: #ffd0a8;
}

.medical-note p {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(10, 1, 6, 0.42);
}

.footer-grid {
  display: grid;
  min-height: 250px;
  align-items: start;
  padding-block: 62px;
  grid-template-columns: 1.2fr 0.8fr auto;
  gap: 48px;
}

.footer-brand p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer nav {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.site-footer nav a {
  color: var(--text-dim);
  font-size: 0.92rem;
  text-decoration: none;
}

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

.footer-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: right;
}

/* Legal and support pages */

.page-hero {
  padding-block: clamp(76px, 10vw, 132px) clamp(62px, 8vw, 104px);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(3.4rem, 7.2vw, 6.2rem);
}

.page-lede {
  max-width: 740px;
  margin-bottom: 18px;
}

.effective-date {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.effective-date strong {
  color: var(--text-dim);
}

.legal-layout {
  display: grid;
  align-items: start;
  padding-block: clamp(64px, 9vw, 118px);
  grid-template-columns: 240px minmax(0, 760px);
  justify-content: space-between;
  gap: clamp(54px, 9vw, 130px);
}

.legal-toc {
  position: sticky;
  top: 118px;
  padding: 22px 0;
  border-block: 1px solid var(--border);
}

.legal-toc > p {
  margin-bottom: 16px;
  color: var(--pink-bright);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-toc nav {
  display: grid;
  gap: 7px;
}

.legal-toc a {
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
}

.legal-toc a:hover {
  color: var(--cream);
}

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

.legal-article > section {
  padding-bottom: 52px;
  margin-bottom: 52px;
  border-bottom: 1px solid var(--border);
}

.legal-article > section:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.legal-article h2 {
  margin-bottom: 24px;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.legal-article h3 {
  font-size: 1.14rem;
  letter-spacing: -0.015em;
}

.legal-article p,
.legal-article li,
.faq-list p,
.faq-list li {
  color: var(--text-dim);
}

.legal-article p,
.legal-article ul,
.legal-article ol {
  margin-bottom: 20px;
}

.legal-article li + li,
.faq-list li + li {
  margin-top: 9px;
}

.legal-article a,
.faq-list a {
  color: var(--pink-soft);
}

.policy-summary {
  padding: clamp(28px, 4vw, 42px) !important;
  border: 1px solid var(--border-bright) !important;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 164, 202, 0.11), rgba(42, 11, 27, 0.76));
}

.policy-summary ul {
  margin: 0;
  padding-left: 1.2em;
}

.policy-summary .eyebrow {
  margin-bottom: 14px;
}

.data-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.data-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: rgba(42, 11, 27, 0.48);
  font-size: 0.9rem;
  line-height: 1.52;
}

.data-table caption {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 164, 202, 0.055);
  color: var(--text-dim);
  font-size: 0.82rem;
  font-weight: 750;
  text-align: left;
}

.data-table th,
.data-table td {
  padding: 19px 18px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.data-table tr:last-child th,
.data-table tr:last-child td {
  border-bottom: 0;
}

.data-table th:last-child,
.data-table td:last-child {
  border-right: 0;
}

.data-table thead th {
  background: rgba(255, 164, 202, 0.09);
  color: var(--cream);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.data-table tbody th {
  width: 22%;
  color: var(--pink-soft);
}

.data-table tbody td {
  color: var(--text-dim);
}

.processor-list {
  display: grid;
  margin-block: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.processor-list article {
  padding: 25px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(48, 12, 31, 0.48);
}

.processor-list h3 {
  margin-bottom: 10px;
}

.processor-list p {
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.processor-list a {
  font-size: 0.84rem;
  font-weight: 800;
}

.important-callout {
  margin-block: 24px;
  padding: 26px 28px;
  border-left: 3px solid var(--pink);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(255, 92, 154, 0.075);
}

.important-callout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cream);
  font-size: 1.1rem;
}

.important-callout p {
  margin-bottom: 0;
}

.contact-card {
  display: grid;
  justify-items: start;
  gap: 5px;
  margin-block: 24px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--card);
  font-style: normal;
}

.contact-card strong {
  color: var(--cream);
}

/* Support */

.support-hero {
  display: block;
}

.support-hero .support-actions {
  margin-top: 30px;
}

.support-start {
  padding-bottom: clamp(88px, 11vw, 150px);
}

.setup-grid {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.setup-grid li {
  min-height: 320px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--card);
}

.setup-grid h3 {
  margin-top: 54px;
  font-size: 1.28rem;
}

.setup-grid p {
  margin-bottom: 0;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.setup-number {
  color: var(--pink-bright);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

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

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  padding: 30px 0;
  color: var(--cream);
  cursor: pointer;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 800;
}

.faq-list summary::marker {
  color: var(--pink-soft);
}

.faq-list details > div {
  max-width: 850px;
  padding: 0 58px 30px 0;
}

.faq-list details > div > :last-child {
  margin-bottom: 0;
}

.support-contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  gap: clamp(52px, 9vw, 120px);
}

.ad-report {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(52px, 9vw, 120px);
}

.ad-report > div:first-child > p:not(.eyebrow) {
  color: var(--text-dim);
}

.ad-report-panel {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(255, 208, 168, 0.27);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 208, 168, 0.065), transparent 60%),
    var(--card);
}

.ad-report-panel > p:first-child {
  margin-bottom: 12px;
  color: var(--cream);
}

.ad-report-panel ul {
  margin: 0 0 30px;
  padding-left: 1.2em;
  color: var(--text-dim);
}

.ad-report-panel li + li {
  margin-top: 8px;
}

.support-contact > div > p:not(.eyebrow) {
  color: var(--text-dim);
}

.contact-panel {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  background: var(--card);
}

.check-list {
  margin: 0 0 30px;
  padding-left: 1.2em;
  color: var(--text-dim);
}

.check-list li + li {
  margin-top: 8px;
}

.safe-note {
  margin: 24px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
}

.safe-note strong {
  color: #ffd0a8;
}

/* 404 */

.not-found {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 36px 24px;
}

.not-found-card {
  width: min(620px, 100%);
  padding: clamp(34px, 7vw, 66px);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-xl);
  background: var(--card-strong);
  box-shadow: var(--shadow);
  text-align: center;
}

.not-found-card img {
  width: 110px;
  margin: 0 auto 28px;
  border-radius: 28%;
  box-shadow: var(--glow);
}

.not-found-card h1 {
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 8vw, 4.8rem);
}

.not-found-card p {
  margin-bottom: 28px;
  color: var(--text-dim);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
  }

  .section-split,
  .privacy-panel,
  .support-contact,
  .ad-report {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: rgba(42, 11, 27, 0.4);
  }

  .legal-toc nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 20px;
  }

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

  .setup-grid li {
    min-height: 280px;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100% - 32px, 1180px);
    --radius-lg: 26px;
    --radius-xl: 30px;
  }

  html {
    scroll-padding-top: 124px;
  }

  .header-inner {
    min-height: 108px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding-block: 12px;
  }

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

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .site-nav a {
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
    gap: 30px;
    padding-top: 70px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 14vw, 5rem);
  }

  .hero-actions,
  .support-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .signal-grid p,
  .signal-grid p:first-child,
  .signal-grid p:last-child {
    min-height: 112px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .signal-grid p:last-child {
    border-bottom: 0;
  }

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

  .feature-card,
  .feature-card-large {
    min-height: 380px;
    grid-column: auto;
  }

  .feature-card-large {
    min-height: 460px;
  }

  .phase-row {
    border-radius: 18px;
    grid-template-columns: 1fr 1fr;
  }

  .phase-row span {
    padding: 9px 5px;
  }

  .privacy-panel {
    padding: 34px 26px;
  }

  .launch-card {
    justify-items: start;
    grid-template-columns: auto 1fr;
  }

  .launch-card > img {
    width: 72px;
  }

  .launch-card .coming-soon-button {
    grid-column: 1 / -1;
  }

  .medical-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .footer-meta {
    grid-column: 1 / -1;
    text-align: left;
  }

  .page-hero {
    padding-top: 64px;
  }

  .page-hero h1 {
    font-size: clamp(3.25rem, 15vw, 5rem);
  }

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

  .processor-list,
  .setup-grid {
    grid-template-columns: 1fr;
  }

  .setup-grid li {
    min-height: 260px;
  }

  .faq-list details > div {
    padding-right: 0;
  }
}

@media (max-width: 460px) {
  .feature-card,
  .feature-card-large {
    padding: 28px 24px;
  }

  .phase-row,
  .card-whisper {
    right: 24px;
    left: 24px;
  }

  .steps li {
    grid-template-columns: 50px 1fr;
    gap: 13px;
  }

  .legal-toc nav {
    grid-template-columns: 1fr;
  }

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

  .footer-meta {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  :root {
    color-scheme: light;
  }

  body {
    background: #fff;
    color: #1d0c15;
    font-size: 11pt;
  }

  body::before,
  .site-header,
  .site-footer,
  .legal-toc {
    display: none;
  }

  .page-hero {
    padding: 30px 0;
    border-color: #bbb;
  }

  .legal-layout {
    display: block;
    padding: 30px 0;
  }

  h1,
  h2,
  h3,
  .legal-article p,
  .legal-article li,
  .data-table tbody td,
  .data-table tbody th {
    color: #1d0c15;
  }

  .policy-summary,
  .processor-list article,
  .contact-card,
  .data-table {
    background: #fff;
    box-shadow: none;
  }

  a {
    color: #6e2147 !important;
  }
}
