:root {
  color-scheme: light;
  --ink: #0a1016;
  --muted: #56616d;
  --quiet: #78828c;
  --paper: #ffffff;
  --canvas: #f4f7f9;
  --soft: #eaf0f3;
  --line: #d8e0e5;
  --night: #07110f;
  --night-soft: #10211e;
  --lime: #b9f227;
  --mint: #23d7a1;
  --blue: #399af2;
  --coral: #ff655d;
  --amber: #f2bd3d;
  --shadow: rgba(7, 17, 15, 0.16);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font: 16px/1.55 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-nav {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 28px;
}

.site-nav.on-dark {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(3, 10, 9, 0.72), rgba(3, 10, 9, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: inherit;
  font-size: 1.02rem;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.nav-links {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  opacity: 0.76;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  opacity: 1;
}

.hero {
  position: relative;
  display: flex;
  min-height: min(780px, 84svh);
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--night);
  background-image:
    linear-gradient(90deg, rgba(3, 10, 9, 0.94) 0%, rgba(3, 10, 9, 0.72) 44%, rgba(3, 10, 9, 0.18) 78%),
    linear-gradient(0deg, rgba(3, 10, 9, 0.76) 0%, transparent 38%),
    url("screen-home.png");
  background-position: center 42%;
  background-size: cover;
  color: #ffffff;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1184px, calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0 84px;
}

.hero-copy {
  width: 100%;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--mint);
  font-size: 0.84rem;
  font-weight: 850;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 6.2rem;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: 3.8rem;
  font-weight: 880;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  font-weight: 820;
}

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

.hero .lede {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.3rem;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 7px;
  padding: 11px 18px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  transform: translateY(-1px);
}

.button.bright {
  border-color: var(--lime);
  background: var(--lime);
  color: #0a150f;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(7, 17, 15, 0.48);
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.button.outline {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

.section {
  padding: clamp(68px, 9vw, 118px) 28px;
}

.section-inner {
  width: min(1184px, 100%);
  margin: 0 auto;
}

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

.section-heading p {
  max-width: 680px;
  margin: 0;
  font-size: 1.1rem;
}

.release-band {
  background: var(--paper);
}

.release-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.release-item {
  min-width: 0;
  padding: 28px 24px;
}

.release-item + .release-item {
  border-left: 1px solid var(--line);
}

.release-item span,
.release-item strong {
  display: block;
}

.release-item span {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 850;
}

.release-item strong {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.release-item p {
  margin: 0;
  font-size: 0.94rem;
}

.release-link {
  color: inherit;
  text-decoration: none;
}

.release-link:hover {
  background: var(--soft);
}

.promise-strip {
  position: relative;
  z-index: 3;
  width: min(1184px, calc(100% - 48px));
  margin: -36px auto 0;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 20px 52px var(--shadow);
}

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

.promise-item {
  min-width: 0;
  padding: 26px 28px;
}

.promise-item + .promise-item {
  border-left: 1px solid var(--line);
}

.promise-item strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.05rem;
}

.promise-item span {
  color: var(--muted);
  font-size: 0.94rem;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.story-copy {
  max-width: 540px;
}

.story-copy p {
  font-size: 1.08rem;
}

.story-list {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.story-point {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
}

.story-index {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 900;
}

.story-point strong {
  display: block;
  margin-bottom: 3px;
}

.story-point span {
  color: var(--muted);
  font-size: 0.94rem;
}

.screen-stage {
  position: relative;
  min-height: 680px;
}

.phone-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 5px solid #11181d;
  border-radius: 8px;
  background: #11181d;
  box-shadow: 0 28px 72px rgba(10, 16, 22, 0.24);
}

.phone-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.phone-shot.primary {
  right: 0;
  bottom: 0;
  width: min(62%, 350px);
  z-index: 2;
}

.phone-shot.secondary {
  top: 0;
  left: 0;
  width: min(54%, 305px);
  z-index: 1;
}

.phone-shot.tertiary {
  right: 7%;
  top: 11%;
  width: min(45%, 250px);
  opacity: 0.72;
}

.band-dark {
  background: var(--night);
  color: #ffffff;
}

.band-dark p {
  color: #a9b8b4;
}

.band-dark .eyebrow {
  color: var(--lime);
}

.feature-rows {
  display: grid;
  gap: 0;
  border-top: 1px solid #243530;
}

.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 42px var(--shadow);
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  color: var(--ink);
}

.comparison-table caption {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 0.94rem;
  line-height: 1.45;
  text-align: left;
}

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

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

.comparison-table thead th {
  background: var(--night);
  color: white;
  font-weight: 760;
}

.comparison-table tbody th {
  width: 170px;
  background: var(--soft);
  font-weight: 760;
}

.comparison-table td strong {
  display: block;
  margin-bottom: 4px;
}

.source-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.source-list li {
  padding: 14px 16px;
  border-left: 3px solid var(--blue);
  background: var(--soft);
  color: var(--muted);
}

.source-list a {
  color: var(--ink);
  font-weight: 740;
}

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

.guide-card {
  display: flex;
  min-height: 320px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: var(--paper);
  text-decoration: none;
}

.guide-card:hover {
  border-color: var(--blue);
}

.guide-card .eyebrow {
  margin-bottom: 34px;
}

.guide-card h2,
.guide-card h3 {
  max-width: 520px;
  margin-bottom: 14px;
  font-size: 2.5rem;
}

.guide-card p {
  max-width: 560px;
  margin-bottom: 0;
  font-size: 1.02rem;
}

.guide-card .guide-link {
  display: block;
  margin-top: 32px;
  color: var(--blue);
  font-weight: 820;
}

.guide-card.featured {
  grid-column: 1 / -1;
  min-height: 360px;
  background: var(--night);
  color: white;
}

.guide-card.featured p {
  color: #a9b8b4;
}

.article-hero .hero-inner {
  width: min(960px, calc(100% - 48px));
}

.article-hero h1 {
  max-width: 940px;
  font-size: 4.8rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 720;
}

.article-shell {
  width: min(820px, 100%);
  margin: 0 auto;
}

.article-intro {
  margin: 0 0 48px;
  color: var(--ink);
  font-size: 1.45rem;
  line-height: 1.55;
}

.article-body h2 {
  margin-top: 64px;
  font-size: 2.85rem;
}

.article-body h3 {
  margin-top: 34px;
  font-size: 1.45rem;
}

.article-body p,
.article-body li {
  font-size: 1.08rem;
  line-height: 1.72;
}

.article-body ul,
.article-body ol {
  display: grid;
  gap: 10px;
  padding-left: 24px;
}

.article-callout {
  margin: 42px 0;
  border-left: 4px solid var(--mint);
  padding: 24px 28px;
  background: var(--soft);
}

.article-callout strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.18rem;
}

.article-callout p {
  margin: 0;
}

.article-figure {
  margin: 48px auto;
  text-align: center;
}

.article-figure img {
  display: block;
  width: min(100%, 430px);
  margin: 0 auto;
  border: 4px solid #121a20;
  border-radius: 8px;
}

.article-figure figcaption {
  max-width: 560px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.article-sources {
  margin-top: 68px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.article-sources h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.article-sources li {
  font-size: 0.96rem;
}

.related-band {
  background: var(--soft);
}

.related-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.related-link {
  min-width: 0;
  padding: 24px;
  background: var(--paper);
  text-decoration: none;
}

.related-link span,
.related-link strong {
  display: block;
}

.related-link span {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.related-link strong {
  line-height: 1.35;
}

.feature-row {
  display: grid;
  grid-template-columns: 150px minmax(220px, 0.7fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid #243530;
}

.feature-row .feature-number {
  color: var(--mint);
  font-weight: 850;
}

.feature-row strong {
  font-size: 1.3rem;
}

.feature-row p {
  margin: 0;
}

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

.showcase {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.showcase-media {
  overflow: hidden;
  height: 420px;
  background: var(--soft);
}

.showcase-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.showcase-copy {
  padding: 24px;
}

.showcase-copy p {
  margin-bottom: 0;
}

.privacy-band {
  background: var(--blue);
  color: #08111a;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: end;
}

.privacy-layout p {
  max-width: 680px;
  color: rgba(8, 17, 26, 0.72);
  font-size: 1.08rem;
}

.privacy-facts {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(8, 17, 26, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.privacy-fact {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.32);
  font-weight: 800;
}

.cta {
  background: var(--paper);
  text-align: center;
}

.cta .section-inner {
  max-width: 820px;
}

.cta p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 1.08rem;
}

.cta .actions {
  justify-content: center;
}

.page-hero {
  position: relative;
  display: flex;
  min-height: 530px;
  align-items: flex-end;
  overflow: hidden;
  background-color: var(--night);
  background-image:
    linear-gradient(0deg, rgba(3, 10, 9, 0.88), rgba(3, 10, 9, 0.18) 58%, transparent),
    linear-gradient(90deg, rgba(3, 10, 9, 0.95), rgba(3, 10, 9, 0.58) 58%, rgba(3, 10, 9, 0.18)),
    url("screen-replay.png");
  background-position: center 38%;
  background-size: cover;
  color: #ffffff;
}

.page-hero .hero-inner {
  padding-bottom: 68px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: 5.2rem;
  overflow-wrap: anywhere;
}

.page-hero .lede {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.18rem;
}

.feature-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: center;
}

.feature-detail + .feature-detail {
  margin-top: 110px;
}

.feature-detail.reverse .feature-copy {
  order: 2;
}

.feature-detail.reverse .single-screen {
  order: 1;
}

.feature-copy p {
  font-size: 1.06rem;
}

.feature-copy ul {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-copy li {
  position: relative;
  margin-top: 12px;
  padding-left: 24px;
  color: var(--muted);
}

.feature-copy li::before {
  position: absolute;
  top: 0.66em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  content: "";
}

.single-screen {
  justify-self: center;
  margin: 0;
  width: min(100%, 370px);
  overflow: hidden;
  border: 5px solid #11181d;
  border-radius: 8px;
  background: #11181d;
  box-shadow: 0 28px 72px rgba(10, 16, 22, 0.2);
}

.single-screen img {
  display: block;
  width: 100%;
}

.doc-main {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0 84px;
}

.doc-hero {
  padding: 0;
  background: var(--paper);
}

.doc-hero .doc-main {
  padding-top: 64px;
  padding-bottom: 56px;
}

.doc-heading {
  display: flex;
  align-items: center;
  gap: 20px;
}

.doc-heading img {
  width: 76px;
  height: 76px;
  border-radius: 8px;
  box-shadow: 0 14px 32px var(--shadow);
}

.doc-heading h1 {
  margin-bottom: 8px;
  font-size: 4.2rem;
}

.effective-date,
.doc-lede {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.doc-lede {
  max-width: 780px;
  margin-top: 24px;
  font-size: 1.08rem;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.summary-item {
  padding: 20px;
  background: var(--canvas);
}

.summary-item strong {
  display: block;
  margin-bottom: 5px;
}

.summary-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.doc-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.toc {
  position: sticky;
  top: 24px;
  padding-top: 5px;
}

.toc-title {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.toc a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
}

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

.content {
  min-width: 0;
  border-top: 1px solid var(--line);
}

.content-section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.content-section h2 {
  margin-bottom: 16px;
  font-size: 1.65rem;
}

.content-section h3 {
  margin: 28px 0 8px;
  font-size: 1.08rem;
}

.content-section p,
.content-section li {
  color: var(--muted);
}

.content-section > :first-child {
  margin-top: 0;
}

.content-section > :last-child {
  margin-bottom: 0;
}

.support-lead {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.support-lead p {
  margin: 5px 0 0;
}

.checks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.check-item {
  padding: 20px;
  background: var(--paper);
}

.check-item strong {
  display: block;
  margin-bottom: 5px;
}

.check-item span {
  color: var(--muted);
  font-size: 0.93rem;
}

.help-hero {
  overflow: hidden;
  background: var(--night);
  color: #ffffff;
}

.help-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: clamp(48px, 8vw, 110px);
  width: min(1120px, calc(100% - 48px));
  min-height: 610px;
  margin: 0 auto;
  padding: 72px 0 0;
  align-items: end;
}

.help-hero-copy {
  align-self: center;
  padding-bottom: 72px;
}

.help-hero h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 5.2rem;
}

.help-hero .lede {
  max-width: 650px;
  margin: 0;
  color: #b6c4c1;
  font-size: 1.18rem;
}

.help-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.help-quick-links a {
  border: 1px solid #355149;
  border-radius: 6px;
  padding: 8px 11px;
  color: #e7efed;
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.help-quick-links a:hover {
  border-color: var(--mint);
  color: var(--mint);
}

.help-hero-screen {
  width: 100%;
  max-height: 530px;
  margin: 0;
  overflow: hidden;
  border: 5px solid #17221f;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #17221f;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.4);
}

.help-hero-screen img {
  display: block;
  width: 100%;
}

.help-main {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 92px;
}

.help-section {
  padding: 76px 0 54px;
  scroll-margin-top: 20px;
}

.help-section + .help-section {
  border-top: 1px solid var(--line);
}

.help-section-heading {
  display: grid;
  grid-template-columns: 74px minmax(0, 760px);
  gap: 20px;
  margin-bottom: 36px;
}

.help-section-heading h2 {
  margin-bottom: 12px;
  font-size: 3rem;
}

.help-section-heading p:last-child {
  max-width: 720px;
  margin: 0;
  font-size: 1.04rem;
}

.help-number {
  margin: 5px 0 0;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 900;
}

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

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

.workflow summary {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, auto) 28px;
  gap: 22px;
  align-items: center;
  min-height: 86px;
  padding: 18px 4px;
  cursor: pointer;
  list-style: none;
}

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

.workflow summary::after {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  content: "+";
  font-size: 1.2rem;
  font-weight: 800;
}

.workflow[open] summary::after {
  content: "-";
}

.workflow summary span {
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 850;
}

.workflow summary small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-align: right;
}

.workflow-body {
  padding: 6px 4px 38px 94px;
}

.workflow-intro {
  max-width: 760px;
  margin-bottom: 24px;
}

.workflow-intro h3 {
  margin-bottom: 6px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.workflow-intro p {
  margin: 0;
}

.workflow-steps {
  max-width: 820px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-steps li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 12px 0;
}

.workflow-steps li + li {
  border-top: 1px solid var(--soft);
}

.workflow-steps li > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 900;
}

.workflow-steps p {
  margin: 4px 0 0;
}

.workflow-outcome,
.workflow-note {
  max-width: 820px;
  margin-top: 24px;
  border-left: 4px solid var(--mint);
  padding: 14px 18px;
  background: var(--paper);
}

.workflow-outcome strong {
  display: block;
  margin-bottom: 3px;
}

.workflow-outcome p {
  margin: 0;
}

.workflow-note {
  border-left-color: var(--amber);
  color: var(--muted);
  font-size: 0.93rem;
}

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

.cue-table {
  max-width: 900px;
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.cue-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.65fr) minmax(220px, 1fr) minmax(190px, 0.8fr);
  gap: 20px;
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.cue-heading {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.cue-row strong {
  color: var(--ink);
}

.help-visual-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 330px));
  gap: 24px;
  margin: 0 0 42px 94px;
}

.help-visual-pair figure {
  margin: 0;
}

.help-visual-pair img {
  display: block;
  width: 100%;
  max-height: 460px;
  border: 4px solid #121a20;
  border-radius: 8px;
  object-fit: cover;
  object-position: top;
}

.help-visual-pair figcaption {
  padding-top: 8px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 750;
}

.help-support-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: end;
  margin-top: 54px;
  padding: 42px;
  border-radius: 8px;
  background: var(--night);
  color: #ffffff;
}

.help-support-band h2 {
  max-width: 680px;
  margin-bottom: 12px;
  font-size: 2.8rem;
}

.help-support-band p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 0;
  color: #a9b8b4;
}

.help-support-band .actions {
  justify-content: flex-end;
}

.site-footer {
  background: var(--night);
  color: #ffffff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  width: min(1184px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.footer-brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand span {
  color: #9caeaa;
  font-size: 0.88rem;
}

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

.footer-links a {
  color: #c5d1ce;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 900px) {
  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 3.3rem;
  }

  .page-hero h1,
  .help-hero h1 {
    font-size: 4.5rem;
  }

  .article-hero h1 {
    font-size: 4rem;
  }

  .story-layout,
  .privacy-layout,
  .feature-detail {
    grid-template-columns: 1fr;
  }

  .story-copy {
    max-width: 720px;
  }

  .screen-stage {
    min-height: 620px;
  }

  .feature-detail.reverse .feature-copy,
  .feature-detail.reverse .single-screen {
    order: initial;
  }

  .feature-row {
    grid-template-columns: 70px minmax(180px, 0.65fr) 1fr;
  }

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

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

  .related-links {
    grid-template-columns: 1fr;
  }

  .release-item:nth-child(3) {
    border-left: 0;
  }

  .release-item:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .showcase:last-child {
    grid-column: 1 / -1;
  }

  .help-hero-inner {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 40px;
  }

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

  .help-support-band .actions {
    justify-content: flex-start;
    margin-top: 0;
  }
}

@media (max-width: 700px) {
  .site-nav {
    width: 100%;
    padding: 16px 18px;
  }

  .nav-links {
    gap: 11px;
    justify-content: flex-end;
  }

  .nav-links a {
    font-size: 0.84rem;
  }

  .hero {
    min-height: 760px;
    background-image:
      linear-gradient(0deg, rgba(3, 10, 9, 0.96) 0%, rgba(3, 10, 9, 0.5) 66%, rgba(3, 10, 9, 0.25)),
      url("screen-home.png");
    background-position: center 25%;
  }

  .hero-inner {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    padding: 130px 0 58px;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .page-hero h1,
  .help-hero h1 {
    font-size: 3.7rem;
  }

  .article-hero h1 {
    font-size: 3.4rem;
  }

  .doc-heading h1 {
    font-size: 3.5rem;
  }

  .guide-card h2,
  .guide-card h3 {
    font-size: 2.2rem;
  }

  .article-intro {
    font-size: 1.28rem;
  }

  .article-body h2,
  .help-section-heading h2 {
    font-size: 2.35rem;
  }

  .hero .lede {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    overflow-wrap: anywhere;
  }

  .section {
    padding: 68px 18px;
  }

  .promise-strip {
    width: calc(100% - 28px);
    margin-top: -22px;
  }

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

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

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

  .guide-card.featured {
    grid-column: auto;
  }

  .guide-card {
    min-height: 0;
    padding: 24px;
  }

  .article-hero .hero-inner {
    width: calc(100vw - 36px);
  }

  .article-body p,
  .article-body li {
    font-size: 1rem;
  }

  .release-item + .release-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .promise-item {
    padding: 18px 20px;
  }

  .promise-item + .promise-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .screen-stage {
    min-height: 580px;
  }

  .phone-shot.primary {
    width: 62%;
  }

  .phone-shot.secondary {
    width: 55%;
  }

  .feature-row {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
  }

  .feature-row p {
    grid-column: 2;
  }

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

  .showcase:last-child {
    grid-column: auto;
  }

  .showcase-media {
    height: 480px;
  }

  .privacy-layout {
    gap: 28px;
  }

  .page-hero {
    min-height: 570px;
    background-position: center 34%;
  }

  .feature-detail + .feature-detail {
    margin-top: 82px;
  }

  .single-screen {
    width: min(84vw, 350px);
  }

  .doc-main {
    width: calc(100% - 36px);
    padding-top: 28px;
  }

  .doc-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .summary-grid,
  .checks-grid {
    grid-template-columns: 1fr;
  }

  .doc-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .support-lead {
    grid-template-columns: 1fr;
  }

  .help-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 54px;
  }

  .help-hero-copy {
    padding-bottom: 0;
  }

  .help-hero-screen {
    justify-self: center;
    width: min(76vw, 310px);
    max-height: 360px;
  }

  .help-main {
    width: calc(100% - 36px);
  }

  .help-section {
    padding: 58px 0 42px;
  }

  .help-section-heading {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
  }

  .workflow summary {
    grid-template-columns: minmax(0, 1fr) 28px;
    gap: 12px;
  }

  .workflow summary small {
    grid-column: 1;
    grid-row: 2;
    text-align: left;
  }

  .workflow summary::after {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .workflow-body {
    padding-left: 0;
  }

  .cue-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cue-heading {
    display: none;
  }

  .help-visual-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-left: 0;
  }

  .help-visual-pair img {
    max-height: 390px;
  }

  .help-support-band {
    margin-right: -18px;
    margin-left: -18px;
    padding: 34px 18px;
    border-radius: 0;
  }

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

@media (max-width: 430px) {
  .site-nav {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    padding: 14px 16px 20px;
  }

  .brand span {
    display: inline;
  }

  .nav-links {
    flex: 0 0 100%;
    width: 100%;
    justify-content: space-between;
    gap: 0;
  }

  .nav-links a {
    font-size: 0.74rem;
  }

  .hero-copy {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
  }

  h1,
  .help-hero h1,
  .doc-heading h1 {
    font-size: 3rem;
  }

  .page-hero h1,
  .article-hero h1 {
    font-size: 2.7rem;
  }

  .page-hero {
    min-height: 540px;
  }

  .help-quick-links a {
    padding: 7px 9px;
    font-size: 0.8rem;
  }

  .help-section-heading {
    grid-template-columns: 1fr;
  }

  .help-number {
    margin-bottom: 3px;
  }

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

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

  .button:hover {
    transform: none;
  }
}
