:root {
  --paper: #f5f7fa;
  --paper-raised: #ffffff;
  --ink: #141414;
  --ink-soft: #5f6670;
  --dark: #0d0f10;
  --dark-raised: #191b1d;
  --dark-card: #212121;
  --line: #d8dce1;
  --line-dark: #34383c;
  --blue: #1e5e89;
  --blue-bright: #2c7caf;
  --aubergine: #67507a;
  --aubergine-dark: #806093;
  --eucalyptus: #39756f;
  --indigo: #5f70ae;
  --success: #1a734d;
  --danger: #bf2e29;
  --brass: #8b7025;
  --radius-sm: 0.8rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --shadow-soft: 0 24px 60px rgb(20 20 20 / 12%);
  --shadow-phone: 0 28px 70px rgb(0 0 0 / 36%);
  --max: 76rem;
  --header-height: 5.25rem;
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

button,
input {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid #4a9bd0;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  translate: 0 -150%;
  border-radius: 0.5rem;
  background: var(--paper-raised);
  color: var(--ink);
  padding: 0.75rem 1rem;
  font-weight: 800;
}

.skip-link:focus {
  translate: 0;
}

.shell {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgb(20 20 20 / 7%);
  background: rgb(245 247 250 / 92%);
  backdrop-filter: blur(18px) saturate(140%);
}

.site-header--dark {
  border-color: rgb(255 255 255 / 9%);
  background: rgb(13 15 16 / 92%);
  color: white;
}

.nav-shell {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.brand-mark {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
}

.site-header .brand-mark {
  width: 3rem;
  height: 3rem;
}

.brand-wordmark {
  width: 6.35rem;
  height: auto;
}

.site-header--dark .brand-wordmark {
  filter: invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2rem);
}

.nav-links > a:not(.button):not(.app-store-badge-link) {
  position: relative;
  color: inherit;
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-links > a:not(.button):not(.app-store-badge-link)::after {
  position: absolute;
  right: 0;
  bottom: -0.42rem;
  left: 0;
  height: 2px;
  background: var(--blue-bright);
  content: "";
  scale: 0 1;
  transform-origin: left;
  transition: scale 180ms ease;
}

.nav-links > a:not(.button):not(.app-store-badge-link):hover::after,
.nav-links > a:not(.app-store-badge-link)[aria-current="page"]::after {
  scale: 1 1;
}

.theme-toggle {
  display: inline-flex;
  min-width: 4.55rem;
  min-height: 2.7rem;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  background: var(--paper-raised);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, translate 160ms ease;
}

.theme-toggle:hover {
  translate: 0 -1px;
  border-color: var(--blue-bright);
}

.theme-toggle > span:first-child {
  color: var(--blue-bright);
  font-size: 1.1rem;
}

.nav-toggle {
  position: relative;
  display: none;
  width: 2.9rem;
  height: 2.9rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle::before {
  transform: translate(-50%, calc(-50% - 6px));
}

.nav-toggle::after {
  transform: translate(-50%, calc(-50% + 6px));
}

.nav-open .nav-toggle::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-open .nav-toggle span {
  opacity: 0;
}

.nav-open .nav-toggle::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 1px solid transparent;
  border-radius: 0.7rem;
  padding: 0.75rem 1.05rem;
  background: var(--blue);
  color: white;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 10px 25px rgb(30 94 137 / 20%);
  transition: translate 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  translate: 0 -2px;
  background: #174e73;
  box-shadow: 0 14px 32px rgb(30 94 137 / 28%);
}

.button--ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.button--ghost:hover {
  background: var(--paper-raised);
  box-shadow: none;
}

.button--light {
  background: white;
  color: var(--ink);
  box-shadow: none;
}

.button--small {
  min-height: 2.7rem;
  padding-inline: 0.9rem;
  font-size: 0.84rem;
}

.button--disabled,
.button--disabled:hover {
  cursor: default;
  translate: none;
  background: #496778;
  box-shadow: none;
}

.apple-mark {
  width: 1.05rem;
  height: 1.25rem;
  fill: currentColor;
}

.hero {
  overflow: clip;
  min-height: calc(100svh - var(--header-height));
  background: var(--paper);
}

.hero-grid {
  display: grid;
  min-height: calc(100svh - var(--header-height));
  grid-template-columns: minmax(0, 0.92fr) minmax(31rem, 1.08fr);
  align-items: center;
  gap: 2rem;
  padding-block: clamp(4rem, 8vw, 7rem);
}

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

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3.4rem, 7vw, 6.7rem);
  font-weight: 850;
  letter-spacing: -0.066em;
  line-height: 0.93;
}

.hero h1 {
  color: var(--blue);
  word-spacing: 0.14em;
}

.hero-lede {
  max-width: 36rem;
  margin: 1.7rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.launch-offer {
  position: relative;
  overflow: clip;
  border-bottom: 1px solid rgb(255 255 255 / 18%);
  background:
    radial-gradient(circle at 85% 14%, rgb(88 165 212 / 34%), transparent 28%),
    linear-gradient(128deg, #3f2f4d 0%, #1e5e89 58%, #143f3c 100%);
  color: white;
}

.launch-offer::before,
.launch-offer::after {
  position: absolute;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.launch-offer::before {
  top: -9rem;
  right: 18%;
  width: 22rem;
  height: 22rem;
}

.launch-offer::after {
  right: -7rem;
  bottom: -13rem;
  width: 29rem;
  height: 29rem;
}

.launch-offer__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.65fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding-block: clamp(2.6rem, 6vw, 5.4rem);
}

.launch-offer__label {
  margin: 0 0 0.8rem;
  color: rgb(255 255 255 / 75%);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.launch-offer h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.25rem, 6.8vw, 6.8rem);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.launch-offer h2 strong {
  color: #b9e4ff;
  font-weight: inherit;
}

.launch-offer__copy > p:last-child {
  max-width: 46rem;
  margin: 1.35rem 0 0;
  color: rgb(255 255 255 / 88%);
  font-size: clamp(1.02rem, 1.7vw, 1.25rem);
  line-height: 1.5;
}

.launch-offer__offer {
  border: 1px solid rgb(255 255 255 / 23%);
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 3vw, 2rem);
  background: rgb(13 15 16 / 34%);
  box-shadow: 0 28px 70px rgb(13 15 16 / 25%);
  backdrop-filter: blur(12px);
}

.launch-offer__regular-label {
  display: block;
  color: rgb(255 255 255 / 67%);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.launch-offer__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.45rem 0.7rem;
  margin-top: 0.35rem;
}

.launch-offer__price s {
  color: rgb(255 255 255 / 65%);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 800;
  text-decoration-color: #ffb3aa;
  text-decoration-thickness: 0.14em;
}

.launch-offer__price span {
  color: rgb(255 255 255 / 55%);
  font-size: 1.5rem;
}

.launch-offer__price strong {
  color: white;
  font-size: clamp(3.3rem, 6vw, 5.5rem);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.launch-offer__offer p {
  margin: 1rem 0 0;
  color: rgb(255 255 255 / 76%);
  font-size: 0.83rem;
  line-height: 1.45;
}

.launch-offer__offer .button {
  width: 100%;
  margin-top: 1.1rem;
}

.launch-offer__offer .button--disabled,
.launch-offer__offer .button--disabled:hover {
  background: rgb(255 255 255 / 86%);
  color: #30404c;
}

.preorder-reward {
  max-width: 38rem;
  margin-top: 1.5rem;
  border: 1px solid rgb(255 255 255 / 24%);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--aubergine) 0%, var(--blue) 100%);
  box-shadow: 0 20px 45px rgb(30 94 137 / 22%);
  color: white;
  padding: clamp(1rem, 2.5vw, 1.4rem);
}

.preorder-reward__eyebrow,
.preorder-reward__note {
  display: block;
  font-weight: 780;
}

.preorder-reward__eyebrow {
  margin-bottom: 0.4rem;
  color: rgb(255 255 255 / 78%);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.preorder-reward strong {
  display: block;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.preorder-reward p {
  margin: 0.75rem 0 0;
  color: rgb(255 255 255 / 94%);
  line-height: 1.45;
}

.preorder-reward__note {
  margin-top: 0.7rem;
  color: rgb(255 255 255 / 72%);
  font-size: 0.78rem;
  line-height: 1.4;
}

.preorder-reward__note a {
  color: white;
  font-weight: 800;
}

.launch-kicker {
  margin: 0 0 0.9rem;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section--dark .launch-kicker,
.closing .launch-kicker {
  color: var(--blue-bright);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.app-store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  line-height: 0;
  text-decoration: none;
}

.app-store-badge {
  display: block;
  width: auto;
  height: 48px;
}

.app-store-badge-link--nav {
  flex: 0 0 auto;
  padding: 10px;
}

.app-store-badge--nav {
  height: 40px;
}

.app-store-badge-link--campaign {
  display: flex;
  width: fit-content;
  margin-inline: auto;
}

.launch-offer__offer .app-store-badge-link--campaign {
  margin-top: 0.85rem;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
  margin: 1.25rem 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
  list-style: none;
}

.proof-row li {
  display: flex;
  align-items: center;
  gap: 0.38rem;
}

.proof-row li::before {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--eucalyptus);
  content: "";
}

.hero-art {
  position: relative;
  min-height: 42rem;
}

.hero-art::before,
.hero-art::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  filter: blur(2px);
}

.hero-art::before {
  top: 11%;
  right: 7%;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgb(30 94 137 / 25%);
}

.hero-art::after {
  bottom: 6%;
  left: 4%;
  width: 15rem;
  height: 15rem;
  border: 1px solid rgb(103 80 122 / 24%);
}

.phone {
  position: absolute;
  overflow: hidden;
  container-type: inline-size;
  width: clamp(15rem, 24vw, 19.5rem);
  aspect-ratio: 1320 / 2868;
  border: 0.4rem solid #24272a;
  border-radius: clamp(2.5rem, 4vw, 3.5rem);
  background: #101112;
  box-shadow: var(--shadow-phone);
}

.phone::before {
  display: none;
}

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

.phone .hero-tammy-photo {
  position: absolute;
  z-index: 4;
  top: 18.3%;
  left: 9%;
  width: 25%;
  height: auto;
  aspect-ratio: 1;
  border: 2px solid rgb(255 255 255 / 72%);
  border-radius: 50%;
  object-fit: cover;
}

.phone--hero-dark {
  z-index: 2;
  top: 0;
  right: 1.5rem;
  rotate: 2.8deg;
}

.phone--hero-light {
  z-index: 1;
  bottom: -2rem;
  left: 1rem;
  rotate: -4.5deg;
}

.phone--hero-light img {
  filter: saturate(0.92);
}

.section {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.section--dark {
  background: var(--dark);
  color: white;
}

.section--ink {
  background: var(--ink);
  color: white;
}

.section--white {
  background: white;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.plan-card {
  min-height: 31rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 3rem);
  background: var(--paper);
}

.plan-card--pro {
  border-color: rgb(30 94 137 / 30%);
  background: linear-gradient(145deg, #eef4f8, #f4f0f7 72%);
}

.plan-cinder-logo {
  display: block;
  width: min(10rem, 50%);
  height: auto;
  margin-bottom: 0.7rem;
}

.plan-card h3 {
  margin: 0.35rem 0 1rem;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.plan-pro-logo {
  width: min(15rem, 72%);
  height: auto;
  margin-bottom: 1rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
}

.plan-price strong {
  color: var(--blue);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.plan-price span {
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 750;
}

.plan-price--launch {
  align-items: center;
  margin-top: 1.1rem;
  border: 1px solid rgb(30 94 137 / 25%);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  background: rgb(255 255 255 / 54%);
}

.plan-price--launch .plan-price__regular-label {
  width: 100%;
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-price--launch s {
  color: var(--ink-soft);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
  text-decoration-color: var(--danger);
  text-decoration-thickness: 0.13em;
}

.plan-price--launch strong {
  font-size: clamp(3rem, 6vw, 5.2rem);
}

.plan-price--launch strong + span {
  max-width: 18rem;
}

.plan-launch-note {
  max-width: 36rem;
  margin: 1rem 0 0;
  border-left: 4px solid var(--blue);
  padding-left: 0.9rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.plan-launch-note strong {
  color: var(--ink);
}

.plan-summary {
  max-width: 34rem;
  margin: 1.35rem 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.plan-card ul {
  margin: 0;
  padding-left: 1.25rem;
}

.plan-card li + li {
  margin-top: 0.75rem;
}

.request-info {
  overflow: clip;
  background:
    radial-gradient(circle at 82% 18%, rgb(44 124 175 / 15%), transparent 30%),
    linear-gradient(135deg, #f2eef6 0%, #edf4f8 100%);
}

.request-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(30rem, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.request-info-copy h2 {
  max-width: 11ch;
  margin: 0;
  color: var(--aubergine);
  font-size: clamp(2.8rem, 5.6vw, 5.4rem);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.request-info-lede {
  max-width: 38rem;
  margin: 1.5rem 0 0;
  color: #4d535b;
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
}

.request-info-steps {
  margin: 2rem 0 0;
  padding: 0;
  counter-reset: request-steps;
  list-style: none;
}

.request-info-steps li {
  position: relative;
  min-height: 3.5rem;
  padding-left: 3.7rem;
  counter-increment: request-steps;
}

.request-info-steps li + li {
  margin-top: 1.15rem;
}

.request-info-steps li::before {
  position: absolute;
  top: -0.1rem;
  left: 0;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border: 1px solid rgb(103 80 122 / 34%);
  border-radius: 50%;
  color: var(--aubergine);
  content: counter(request-steps, decimal-leading-zero);
  font-size: 0.78rem;
  font-weight: 850;
}

.request-info-steps strong,
.request-info-steps span {
  display: block;
}

.request-info-steps strong {
  font-size: 1.02rem;
}

.request-info-steps span {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.request-info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.request-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 3vw, 2.25rem);
  background: var(--dark-raised);
  color: white;
  box-shadow: 0 30px 75px rgb(20 20 20 / 22%);
}

.request-preview::after {
  position: absolute;
  z-index: 0;
  right: -6rem;
  bottom: -8rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgb(95 112 174 / 32%);
  border-radius: 50%;
  content: "";
}

.request-preview > * {
  position: relative;
  z-index: 1;
}

.request-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line-dark);
  padding-bottom: 1.2rem;
}

.request-preview-header span,
.request-preview-header strong {
  display: block;
}

.request-preview-header span {
  color: #9fa7af;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.request-preview-header strong {
  margin-top: 0.12rem;
  font-size: 1.18rem;
}

.request-preview-header .request-tone {
  border: 1px solid rgb(128 96 147 / 58%);
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  background: rgb(103 80 122 / 22%);
  color: #d6c7df;
  letter-spacing: 0;
  text-transform: none;
}

.request-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.request-fields span {
  border: 1px solid rgb(88 165 212 / 36%);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  background: rgb(44 124 175 / 14%);
  color: #a9d4ed;
  font-size: 0.78rem;
  font-weight: 780;
}

.request-message {
  margin-top: 1.35rem;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  background: #f5f7fa;
  color: #202327;
}

.request-message > span {
  color: #6b727a;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.request-message p {
  margin: 0.75rem 0 0;
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  line-height: 1.55;
}

.request-preview-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-top: 1rem;
  color: #aeb5bc;
  font-size: 0.76rem;
  font-weight: 720;
}

.request-preview--tutorial {
  max-width: 46rem;
  margin-block: 2rem 2.5rem;
}

.request-truth {
  margin: 1.4rem 0 0;
  border-top: 1px solid var(--line-dark);
  padding-top: 1.15rem;
  color: #b8bec4;
  font-size: 0.9rem;
}

.request-truth strong {
  color: white;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading h2,
.feature-copy h2,
.closing h2,
.page-hero h1,
.article h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 840;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading > p {
  max-width: 34rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section--dark .section-heading > p,
.section--dark .muted,
.section--ink .muted {
  color: #aeb4bb;
}

.use-cases {
  overflow: clip;
}

.use-case {
  display: grid;
  min-height: 41rem;
  grid-template-columns: minmax(16rem, 0.85fr) minmax(18rem, 1.15fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  border-top: 1px solid var(--line-dark);
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.use-case:nth-child(even) .use-case-visual {
  order: 2;
}

.use-case-copy {
  max-width: 32rem;
}

.use-case-number {
  display: block;
  margin-bottom: 1rem;
  color: var(--blue-bright);
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  font-weight: 350;
  letter-spacing: -0.05em;
  line-height: 1;
}

.use-case-copy h3 {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.use-case-copy p {
  max-width: 30rem;
  margin: 0;
  color: #b4bbc2;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.use-case-visual {
  position: relative;
  min-height: 36rem;
}

.use-case-visual .phone {
  top: 50%;
  left: 50%;
  width: clamp(15rem, 24vw, 20rem);
  translate: -50% -50%;
}

.use-case-visual::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  border-top: 1px dotted #50555a;
  content: "";
}

.use-case-visual::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #6f767d;
  content: "";
  translate: 0 -50%;
}

.phone--review::after {
  display: none;
}

.phone--forever {
  aspect-ratio: 945 / 2048;
}

.phone--capture {
  background:
    radial-gradient(circle at 50% 42%, rgb(44 124 175 / 24%), transparent 34%),
    linear-gradient(180deg, #111416, #090b0c);
  color: white;
}

.capture-screen {
  display: flex;
  height: 100%;
  align-items: center;
  flex-direction: column;
  padding: 9% 8%;
  text-align: center;
}

.capture-time {
  align-self: flex-start;
  font-size: 4.2cqi;
  font-weight: 800;
}

.capture-brand {
  position: absolute;
  top: 6.5%;
  left: 50%;
  font-size: 4.5cqi;
  translate: -50% 0;
}

.capture-brand span {
  color: var(--blue-bright);
}

.capture-check {
  display: grid;
  width: 25cqi;
  aspect-ratio: 1;
  place-items: center;
  margin-top: 63%;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 50%;
  background: var(--eucalyptus);
  font-size: 13cqi;
  font-weight: 850;
  line-height: 1;
  box-shadow: 0 0 0 2.5cqi rgb(57 117 111 / 14%);
}

.capture-screen h4 {
  margin: 14cqi 0 3cqi;
  font-size: 8cqi;
  line-height: 1.05;
}

.capture-screen p {
  margin: 0;
  color: #b7bdc4;
  font-size: 4.2cqi;
  line-height: 1.45;
}

.capture-label {
  margin-top: auto;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 10rem;
  padding: 2.2cqi 4cqi;
  color: #d7dce0;
  font-size: 3.5cqi;
  font-weight: 800;
}

.screen-caption {
  position: absolute;
  z-index: 4;
  right: 0.8rem;
  bottom: 0.8rem;
  border: 1px solid rgb(255 255 255 / 13%);
  border-radius: 10rem;
  padding: 0.42rem 0.7rem;
  background: rgb(13 15 16 / 86%);
  color: #bdc3ca;
  font-size: 0.72rem;
  font-weight: 750;
}

.screen-note {
  max-width: 44rem;
  margin: 2.5rem auto 0;
  color: #9ea5ac;
  font-size: 0.82rem;
  text-align: center;
}

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

.process-step {
  position: relative;
  min-height: 14rem;
  border-top: 1px solid var(--line);
  padding: 2rem clamp(1rem, 3vw, 2.5rem) 0 0;
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: -1px;
  right: 2rem;
  left: 7rem;
  height: 1px;
  background: var(--ink);
  content: "";
}

.process-step-number {
  display: block;
  color: var(--blue);
  font-size: 3.6rem;
  font-weight: 350;
  letter-spacing: -0.05em;
  line-height: 1;
}

.process-step h3 {
  margin: 1rem 0 0.4rem;
  font-size: 1.35rem;
}

.process-step p {
  max-width: 18rem;
  margin: 0;
  color: var(--ink-soft);
}

.privacy-band {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 0.62fr);
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.privacy-band > div {
  min-height: 15rem;
  padding: 2rem;
  background: var(--dark-card);
}

.privacy-band h2 {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.privacy-band h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.2rem;
}

.privacy-band p {
  margin: 0;
  color: #b7bdc4;
  font-size: 0.95rem;
}

.icon-disc {
  display: grid;
  width: 3.3rem;
  height: 3.3rem;
  place-items: center;
  border-radius: 50%;
  background: rgb(44 124 175 / 16%);
  color: #58a5d4;
}

.icon-disc svg {
  width: 1.8rem;
  height: 1.8rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.testimonial-intro h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.testimonial-intro p {
  max-width: 24rem;
  color: #b5bbc1;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  position: relative;
  min-height: 17rem;
  border: 1px solid #4a4f54;
  border-radius: 1rem;
  padding: 1.6rem;
  background: var(--dark-raised);
}

.testimonial-card::before,
.testimonial-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  border: 1px solid var(--eucalyptus);
  border-radius: inherit;
  content: "";
  transform: translate(0.55rem, 0.55rem);
}

.testimonial-card::after {
  border-color: var(--aubergine-dark);
  transform: translate(1rem, 1rem);
}

.quote-mark {
  color: #7e858c;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 0.8;
}

.verified {
  position: absolute;
  bottom: 1.5rem;
  left: 1.6rem;
  color: #9da4ab;
  font-size: 0.8rem;
  font-weight: 700;
}

.closing {
  text-align: center;
}

.closing h2 {
  max-width: 18ch;
  margin-inline: auto;
}

.closing .launch-date {
  white-space: nowrap;
}

.closing .button {
  margin-top: 1.5rem;
}

.closing .app-store-badge-link--campaign {
  margin-top: 1.25rem;
}

.closing p {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.closing .preorder-reward-closing {
  max-width: 42rem;
  margin: 1.25rem auto 0;
  color: var(--aubergine-dark);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.page-hero {
  padding-block: clamp(5rem, 10vw, 9rem) clamp(4rem, 7vw, 6rem);
}

.page-hero h1 {
  max-width: 13ch;
}

.page-hero p {
  max-width: 43rem;
  margin: 1.5rem 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.page-hero--dark {
  background: var(--dark);
  color: white;
}

.page-hero--dark p {
  color: #b2b9c0;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  margin-top: 1.4rem;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.page-hero--dark .page-meta {
  color: #9ea6ad;
}

.content-grid {
  display: grid;
  grid-template-columns: 15rem minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 7vw, 6rem);
}

.toc {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.toc h2 {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.toc a {
  display: block;
  border-left: 2px solid var(--line);
  padding: 0.45rem 0 0.45rem 0.9rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.toc a:hover {
  border-color: var(--blue);
  color: var(--ink);
}

.article {
  min-width: 0;
}

.article > section {
  border-top: 1px solid var(--line);
  padding-block: 3rem;
}

.article > section:first-child {
  border-top: 0;
  padding-top: 0;
}

.article h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.article h3 {
  margin: 2rem 0 0.5rem;
  font-size: 1.25rem;
}

.article p,
.article li {
  max-width: 48rem;
  color: #41464c;
}

.article p.lede {
  color: var(--ink);
  font-size: 1.12rem;
}

.article ol,
.article ul {
  padding-left: 1.25rem;
}

.article li + li {
  margin-top: 0.65rem;
}

.callout {
  margin-block: 1.5rem;
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.1rem 1.25rem;
  background: #e9f1f6;
}

.callout--warning {
  border-color: var(--brass);
  background: #f3efe3;
}

.callout--danger {
  border-color: var(--danger);
  background: #f7e9e8;
}

.callout p {
  margin: 0;
}

.steps {
  margin: 1.75rem 0 0;
  padding: 0;
  counter-reset: steps;
  list-style: none;
}

.steps li {
  position: relative;
  min-height: 3.5rem;
  padding: 0 0 1.5rem 3.8rem;
  counter-increment: steps;
}

.steps li::before {
  position: absolute;
  top: -0.2rem;
  left: 0;
  display: grid;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--blue);
  content: counter(steps, decimal-leading-zero);
  font-weight: 800;
}

.tutorial-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 1.25rem;
  margin-block: 2rem 2.5rem;
}

.tutorial-gallery--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tutorial-figure {
  margin: 0;
}

.tutorial-phone {
  position: relative;
  overflow: hidden;
  width: min(100%, 17.5rem);
  aspect-ratio: 1320 / 2868;
  margin-inline: auto;
  border: 0.34rem solid #25282b;
  border-radius: 2.8rem;
  background: #111;
  box-shadow: 0 20px 45px rgb(20 20 20 / 18%);
}

.tutorial-phone--se {
  aspect-ratio: 750 / 1334;
  border-radius: 2.2rem;
}

.tutorial-phone::before {
  display: none;
}

.tutorial-phone--se::before {
  display: none;
}

.tutorial-phone > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tutorial-phone--crop-top > img:first-child {
  object-position: top;
}

.tutorial-phone--backup-actions {
  aspect-ratio: 1320 / 1850;
}

.tutorial-phone--backup-actions > img:first-child {
  object-position: top;
}

.tutorial-phone--forever-clean {
  aspect-ratio: 945 / 2048;
}

.tammy-photo {
  position: absolute;
  z-index: 3;
  top: 18.3%;
  left: 9%;
  width: 25%;
  aspect-ratio: 1;
  border: 2px solid rgb(255 255 255 / 72%);
  border-radius: 50%;
  object-fit: cover;
}

.tutorial-phone--tammy::after {
  position: absolute;
  z-index: 2;
  top: 18.4%;
  right: 5.2%;
  width: 30%;
  height: 4.3%;
  border-radius: 0.45rem;
  background: #dcdfe1;
  content: "";
}

.tutorial-figure figcaption {
  max-width: 20rem;
  margin: 0.85rem auto 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
  line-height: 1.4;
}

.system-shot {
  overflow: hidden;
  width: min(100%, 20rem);
  min-height: 34rem;
  margin-inline: auto;
  border: 0.34rem solid #25282b;
  border-radius: 2.8rem;
  padding: 1.2rem 1rem 1.4rem;
  box-shadow: 0 20px 45px rgb(20 20 20 / 18%);
}

.system-shot--light {
  background: linear-gradient(180deg, #f7f8fa, #e7e9ed);
  color: #161718;
}

.system-shot--dark {
  background:
    radial-gradient(circle at 50% 38%, rgb(103 80 122 / 18%), transparent 38%),
    #101213;
  color: white;
}

.system-shot-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.25rem 0.25rem 1.1rem;
  font-size: 0.72rem;
}

.system-shot-bar > :last-child {
  justify-self: end;
  color: var(--blue-bright);
}

.shared-file,
.system-option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border: 1px solid rgb(20 20 20 / 8%);
  border-radius: 1rem;
  padding: 1rem;
  background: rgb(255 255 255 / 82%);
}

.shared-file {
  margin: 4rem 0 1.4rem;
}

.system-option + .system-option {
  margin-top: 0.65rem;
}

.shared-file strong,
.shared-file small,
.system-option strong,
.system-option small {
  display: block;
}

.shared-file small,
.system-option small {
  margin-top: 0.15rem;
  color: #666c73;
  font-size: 0.72rem;
  line-height: 1.35;
}

.file-icon {
  display: grid;
  width: 3rem;
  height: 3.5rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.55rem;
  background: var(--blue);
  color: white;
  font-size: 0.68rem;
  font-weight: 900;
}

.system-option > span:first-child {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 0.65rem;
  background: #dcebf4;
  color: var(--blue);
  font-weight: 900;
}

.system-panel {
  display: flex;
  min-height: 27rem;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.system-panel h3 {
  margin: 0.7rem 0;
  font-size: 1.7rem;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.system-panel p {
  margin: 0 0 1.4rem;
  color: #b8bec4;
  font-size: 0.88rem;
}

.system-kicker {
  color: #a78ab8;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.system-button {
  display: block;
  margin-top: 0.65rem;
  border-radius: 0.7rem;
  padding: 0.8rem;
  background: var(--blue);
  color: white;
  font-size: 0.8rem;
  font-weight: 850;
}

.system-button--quiet {
  border: 1px solid #43484c;
  background: #242729;
  color: #e2e5e7;
}

.system-alert {
  display: grid;
  width: 4rem;
  aspect-ratio: 1;
  place-items: center;
  align-self: center;
  border-radius: 50%;
  background: rgb(191 46 41 / 18%);
  color: #ef6b65;
  font-size: 2rem;
  font-weight: 900;
}

.blue-word {
  color: var(--blue-bright);
}

.transfer-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(8rem, 0.62fr) minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1rem, 3vw, 2rem);
  background: linear-gradient(135deg, #fff, #eef3f7);
}

.transfer-device {
  display: flex;
  min-height: 15rem;
  justify-content: center;
  flex-direction: column;
  border: 0.3rem solid #25282b;
  border-radius: 2rem;
  padding: 1.3rem;
  background: #f8f9fb;
  box-shadow: 0 16px 35px rgb(20 20 20 / 12%);
}

.transfer-device--android {
  background: #111413;
  color: white;
}

.transfer-device strong,
.transfer-device small {
  display: block;
}

.transfer-device strong {
  margin: 0.55rem 0;
  font-size: 1.2rem;
  line-height: 1.1;
}

.transfer-device small {
  color: var(--ink-soft);
  line-height: 1.4;
}

.transfer-device--android small {
  color: #aeb5b9;
}

.transfer-os {
  color: var(--blue-bright);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.transfer-route {
  text-align: center;
}

.transfer-route span,
.transfer-route small {
  display: block;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.transfer-route strong {
  display: block;
  margin: 0.25rem 0;
  color: var(--blue);
  font-size: 2.5rem;
  line-height: 1;
}

.status-table {
  width: 100%;
  margin-block: 1.5rem;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.status-table th,
.status-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.status-table th {
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status,
.status-pill {
  display: inline-block;
  border-radius: 10rem;
  padding: 0.28rem 0.55rem;
  font-size: 0.73rem;
  font-weight: 850;
  white-space: nowrap;
}

.status--available,
.status-pill--available {
  background: #dceee7;
  color: #15553b;
}

.status--partial {
  background: #f3efe3;
  color: #66531f;
}

.status--planned,
.status-pill--planned {
  background: #e8eaf4;
  color: #435184;
}

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

.info-card {
  min-height: 14rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  background: white;
}

.info-card h2,
.info-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.info-card p {
  margin: 0;
  color: var(--ink-soft);
}

.info-card a {
  display: inline-block;
  margin-top: 1rem;
  color: var(--blue);
  font-weight: 800;
}

.privacy-choice-status {
  margin-top: 1rem !important;
  font-weight: 800;
}

.privacy-choice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.privacy-choice-actions .button:disabled {
  cursor: default;
  opacity: 0.55;
  translate: none;
  box-shadow: none;
}

.faq-tools {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.search-field {
  width: 100%;
  min-height: 3.25rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 0 1rem;
  background: white;
  color: var(--ink);
}

.faq-group {
  margin-top: 3.5rem;
}

.faq-group h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -0.04em;
}

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

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

.faq-item summary {
  position: relative;
  padding: 1.25rem 3rem 1.25rem 0;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 800;
  list-style: none;
}

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

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 0.3rem;
  color: var(--blue);
  content: "+";
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
  translate: 0 -50%;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-answer {
  max-width: 48rem;
  padding: 0 3rem 1.4rem 0;
  color: #41464c;
}

.faq-answer p:first-child {
  margin-top: 0;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-empty {
  display: none;
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
}

.legal-doc {
  max-width: 52rem;
  margin-inline: auto;
}

.legal-doc .draft-notice {
  margin-bottom: 2rem;
  border: 1px solid #c4a759;
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  background: #f3efe3;
  color: #4f421e;
  font-weight: 750;
}

.legal-section {
  border-top: 1px solid var(--line);
  padding-block: 2.5rem;
}

.legal-section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.legal-section p {
  color: #3f444a;
  white-space: pre-line;
}

.support-form-section {
  position: relative;
}

.support-form-intro {
  max-width: 46rem;
  margin-bottom: 1.6rem;
}

.support-form-intro h2 {
  max-width: none;
  margin: 0.2rem 0 0.8rem;
}

.support-form-intro p {
  color: var(--ink-soft);
}

.support-kicker {
  margin: 0;
  color: var(--blue) !important;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.support-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.3rem, 4vw, 2.35rem);
  background: linear-gradient(145deg, var(--paper-raised), #eef4f8);
  box-shadow: var(--shadow-soft);
}

.support-form label:not(.support-honeypot) {
  display: grid;
  min-width: 0;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 820;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--paper-raised);
  color: var(--ink);
  font: inherit;
}

.support-form input,
.support-form select {
  min-height: 3.25rem;
  padding: 0.72rem 0.9rem;
}

.support-upload input[type="file"] {
  max-width: 100%;
  min-height: auto;
  overflow: hidden;
  padding: 0.7rem;
}

.support-upload input[type="file"]::file-selector-button {
  margin-right: 0.75rem;
  border: 0;
  border-radius: 0.55rem;
  padding: 0.65rem 0.8rem;
  background: var(--blue);
  color: white;
  font: inherit;
  font-weight: 800;
}

.support-upload small {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 560;
  line-height: 1.5;
}

.support-form textarea {
  min-height: 10rem;
  resize: vertical;
  padding: 0.9rem;
  line-height: 1.5;
}

.support-form input::placeholder,
.support-form textarea::placeholder {
  color: color-mix(in srgb, var(--ink-soft) 76%, transparent);
}

.support-form__wide {
  grid-column: 1 / -1;
}

.support-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}

.support-form__footer p {
  max-width: 35rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.support-form__footer .button {
  flex: 0 0 auto;
}

.support-form__status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--success) !important;
  font-weight: 800;
}

.support-honeypot,
.support-receipt {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.support-form-credit {
  margin: 1rem 0 0;
  color: var(--ink-soft) !important;
  font-size: 0.78rem;
}

.support-jotform-frame {
  display: block;
  width: 100%;
  min-height: 1180px;
  border: 0;
  border-radius: var(--radius-lg);
  background: #fff;
}

.company-credit {
  color: inherit;
  font-weight: 800;
}

.support-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--ink);
  color: white;
}

.support-cta h2 {
  margin: 0;
  max-width: 15ch;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 3rem;
  background: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.7fr);
  gap: 2rem;
}

.footer-brand p {
  max-width: 21rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.footer-column h2 {
  margin: 0 0 0.8rem;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 0.45rem 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.not-found-copy {
  margin-top: 6rem;
}

.section--dark .brand-wordmark {
  filter: invert(1);
}

.js .reveal {
  opacity: 0;
  translate: 0 1.25rem;
  transition: opacity 560ms ease, translate 560ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  translate: 0;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --paper: #0d0f10;
  --paper-raised: #191b1d;
  --ink: #f2f4f6;
  --ink-soft: #b2b8bf;
  --line: #363a3e;
  --blue: #58a5d4;
  --blue-bright: #72b8df;
  --success: #65c69a;
}

html[data-theme="dark"] .site-header {
  border-color: rgb(255 255 255 / 9%);
  background: rgb(13 15 16 / 92%);
  color: var(--ink);
}

html[data-theme="dark"] .brand-wordmark,
html[data-theme="dark"] .plan-cinder-logo {
  filter: invert(1);
}

html[data-theme="dark"] .plan-pro-logo {
  content: url("/assets/cinderpro-wordmark-dark.png?v=20260814-v6-3");
}

html[data-theme="dark"] .section--white,
html[data-theme="dark"] .info-card,
html[data-theme="dark"] .search-field,
html[data-theme="dark"] .steps li::before,
html[data-theme="dark"] .toc {
  background: var(--paper-raised);
}

html[data-theme="dark"] .plan-card--pro {
  border-color: rgb(88 165 212 / 38%);
  background: linear-gradient(145deg, #18242c, #241f29 72%);
}

html[data-theme="dark"] .plan-price--launch {
  border-color: rgb(88 165 212 / 32%);
  background: rgb(13 15 16 / 36%);
}

html[data-theme="dark"] .request-info {
  background:
    radial-gradient(circle at 82% 18%, rgb(88 165 212 / 12%), transparent 30%),
    linear-gradient(135deg, #17151a 0%, #11181d 100%);
}

html[data-theme="dark"] .request-info-copy h2 {
  color: #bca2cb;
}

html[data-theme="dark"] .request-info-lede {
  color: var(--ink-soft);
}

html[data-theme="dark"] .section--ink,
html[data-theme="dark"] .support-cta {
  background: #08090a;
}

html[data-theme="dark"] .article p,
html[data-theme="dark"] .article li,
html[data-theme="dark"] .faq-answer,
html[data-theme="dark"] .legal-section p {
  color: var(--ink-soft);
}

html[data-theme="dark"] .callout {
  background: #172934;
}

html[data-theme="dark"] .callout--warning,
html[data-theme="dark"] .legal-doc .draft-notice {
  background: #2d291d;
  color: #e1cf91;
}

html[data-theme="dark"] .callout--danger {
  background: #341d1d;
}

html[data-theme="dark"] .transfer-visual {
  background: linear-gradient(135deg, #17191b, #20272c);
}

html[data-theme="dark"] .transfer-device:not(.transfer-device--android) {
  background: #202326;
  color: var(--ink);
}

html[data-theme="dark"] .status--available,
html[data-theme="dark"] .status-pill--available {
  background: #17372b;
  color: #8ad6ae;
}

html[data-theme="dark"] .status--partial {
  background: #302a19;
  color: #e3ca81;
}

html[data-theme="dark"] .status--planned,
html[data-theme="dark"] .status-pill--planned {
  background: #23283d;
  color: #acb9ee;
}

html[data-theme="dark"] .support-form {
  background: linear-gradient(145deg, #191b1d, #18242c);
  box-shadow: 0 24px 60px rgb(0 0 0 / 34%);
}

html[data-theme="dark"] .button--light {
  background: var(--paper-raised);
  color: var(--ink);
}

@media (max-width: 980px) {
  :root {
    --header-height: 4.7rem;
  }

  .js .nav-toggle {
    display: grid;
  }

  .js .nav-links {
    position: absolute;
    z-index: 99;
    top: 100%;
    right: 0;
    height: calc(100dvh - var(--header-height));
    left: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: var(--paper);
    color: var(--ink);
    opacity: 0;
    transform: translateY(-0.5rem);
    overflow-y: auto;
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
  }

  .js .nav-links > a:not(.button):not(.app-store-badge-link) {
    border-bottom: 1px solid var(--line);
    padding: 1.1rem 0.5rem;
    font-size: 1.15rem;
  }

  .js .nav-links .theme-toggle {
    width: 100%;
    justify-content: flex-start;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    padding: 1.1rem 0.5rem;
    background: transparent;
    font-size: 1.15rem;
  }

  .js .nav-links .button {
    margin-top: 1rem;
  }

  .js .nav-links .app-store-badge-link--nav {
    align-self: center;
    margin-top: 1rem;
  }

  .js body.nav-open .nav-links {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  html:not(.js) .site-header {
    position: static;
    height: auto;
  }

  html:not(.js) .nav-shell {
    flex-wrap: wrap;
    padding-block: 0.75rem;
  }

  html:not(.js) .nav-links {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }

  html:not(.js) .theme-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 4rem;
  }

  .launch-offer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .launch-offer__offer {
    width: min(100%, 34rem);
  }

  .hero h1 {
    max-width: 10ch;
  }

  .hero-art {
    min-height: 41rem;
  }

  .phone--hero-dark {
    right: 7%;
  }

  .phone--hero-light {
    left: 8%;
  }

  .privacy-band {
    grid-template-columns: 1fr 1fr;
  }

  .request-info-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .hero {
    overflow: hidden;
  }

  .shell {
    width: min(calc(100% - 1.3rem), var(--max));
  }

  .site-header .button--small {
    width: 100%;
    min-height: 3.25rem;
  }

  .hero-grid {
    min-height: auto;
    gap: 3.5rem;
    padding-block: 3.3rem 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(3.25rem, 16vw, 5rem);
    letter-spacing: -0.035em;
    word-spacing: 0.08em;
  }

  .launch-offer h2 {
    font-size: clamp(3.15rem, 15vw, 5.1rem);
    letter-spacing: -0.045em;
  }

  .launch-offer__grid {
    padding-block: 2.5rem;
  }

  .section-heading h2,
  .feature-copy h2,
  .closing h2,
  .article h2,
  .testimonial-intro h2,
  .support-cta h2 {
    letter-spacing: -0.035em;
    word-spacing: 0.06em;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .proof-row {
    flex-direction: column;
  }

  .hero-art {
    min-height: 32rem;
  }

  .phone {
    width: 13.4rem;
    border-width: 0.32rem;
    border-radius: 2.6rem;
  }

  .phone--hero-dark {
    right: 0.5rem;
  }

  .phone--hero-light {
    bottom: -1.5rem;
    left: 1rem;
  }

  .section {
    padding-block: 4.5rem;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 1rem;
  }

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

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

  .request-info-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .request-info-actions .button {
    width: 100%;
  }

  .request-preview {
    border-radius: var(--radius-md);
  }

  .use-case {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-block: 4rem;
  }

  .use-case:nth-child(even) .use-case-visual {
    order: initial;
  }

  .use-case-visual {
    min-height: 30rem;
  }

  .use-case-visual .phone {
    width: 14rem;
  }

  .use-case-visual::before,
  .use-case-visual::after {
    display: none;
  }

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

  .process-step {
    min-height: 0;
    padding-block: 1.5rem;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .privacy-band {
    grid-template-columns: 1fr;
  }

  .privacy-band > div {
    min-height: 0;
  }

  .testimonial-cards {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    min-height: 14rem;
    width: calc(100% - 1rem);
  }

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

  .toc {
    position: static;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 1rem;
    background: white;
  }

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

  .tutorial-gallery,
  .tutorial-gallery--three {
    grid-template-columns: 1fr;
  }

  .tutorial-phone {
    width: min(100%, 16rem);
  }

  .system-shot {
    min-height: 31rem;
  }

  .transfer-visual {
    grid-template-columns: 1fr;
  }

  .transfer-route strong {
    rotate: 90deg;
  }

  .status-table,
  .status-table tbody,
  .status-table tr,
  .status-table th,
  .status-table td {
    display: block;
  }

  .status-table thead {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
  }

  .status-table tr {
    border-bottom: 1px solid var(--line);
    padding-block: 0.75rem;
  }

  .status-table td {
    border: 0;
    padding: 0.35rem 0;
  }

  .support-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .support-form {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .support-form label,
  .support-form input,
  .support-form select,
  .support-form textarea {
    min-width: 0;
  }

  .support-form__wide {
    grid-column: auto;
  }

  .support-form__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .support-form__footer .button {
    width: 100%;
  }

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

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

@media (max-width: 430px) {
  .brand-wordmark {
    width: 6.6rem;
  }

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

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

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

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

  .reveal {
    opacity: 1;
    translate: 0;
  }
}
