:root {
  color-scheme: light dark;
  --background: #f5f2ec;
  --surface: #fffdf9;
  --surface-strong: #ffffff;
  --text: #1d1b18;
  --muted: #6e675d;
  --line: #ded8ce;
  --line-strong: #c9c1b5;
  --accent: #c74318;
  --ember: #d94a16;
  --teal: #0f897d;
  --blue: #315ee8;
  --gold: #df9a18;
  --ink: #171512;
  --paper: #fffaf2;
  --shadow-sm: 0 0.6rem 1.6rem rgb(48 38 27 / 8%);
  --shadow-lg: 0 2rem 5rem rgb(35 27 20 / 18%);
  --measure: 46rem;
  --shell: 74rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--background);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  margin: 0;
}

a {
  color: var(--accent);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-thickness: 0.13em;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 45%, transparent);
  outline-offset: 4px;
  border-radius: 0.2rem;
}

strong {
  font-weight: 750;
}

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

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.7rem, 8vw, 4.8rem);
}

h2 {
  margin: 3rem 0 0.85rem;
  font-size: clamp(1.55rem, 4vw, 2.2rem);
}

h3 {
  margin: 2rem 0 0.55rem;
  font-size: 1.1rem;
}

p,
ul,
ol {
  margin-block: 0.9rem;
}

ul,
ol {
  padding-left: 1.4rem;
}

li + li {
  margin-top: 0.5rem;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  background: color-mix(in srgb, var(--background) 88%, transparent);
  backdrop-filter: blur(18px);
}

.site-header__inner,
.site-footer__inner,
.content {
  width: min(calc(100% - 2.5rem), var(--measure));
  margin-inline: auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.4rem;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 780;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.wordmark:hover {
  text-decoration: none;
}

.wordmark__mark {
  position: relative;
  width: 1.35rem;
  height: 1.35rem;
  border: 0.18rem solid var(--ember);
  border-right-color: var(--teal);
  border-bottom-color: var(--blue);
  border-radius: 50%;
  transform: rotate(-28deg);
}

.wordmark__mark::after {
  position: absolute;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: var(--gold);
  content: '';
  inset: 0;
  margin: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav a {
  position: relative;
  padding-block: 0.35rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 720;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.15rem;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  content: '';
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.site-nav a:hover {
  color: var(--text);
}

body[data-page='marketing'] .site-nav a:nth-child(1),
body[data-page='support'] .site-nav a:nth-child(2),
body[data-page='privacy'] .site-nav a:nth-child(3) {
  color: var(--text);
}

body[data-page='marketing'] .site-nav a:nth-child(1)::after,
body[data-page='support'] .site-nav a:nth-child(2)::after,
body[data-page='privacy'] .site-nav a:nth-child(3)::after {
  opacity: 1;
  transform: scaleX(1);
}

.content {
  padding-block: clamp(3rem, 7vw, 5rem);
}

body[data-page='privacy'] .content h1 {
  font-size: clamp(2.5rem, 7vw, 3.8rem);
}

body[data-page='privacy'] .content h2 {
  margin-top: 3rem;
  font-size: clamp(1.35rem, 4vw, 1.7rem);
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.1rem;
  border-radius: 0.75rem;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover {
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transform: translateY(-2px);
}

.button--primary {
  background: var(--text);
  color: var(--background);
}

.button--light {
  background: var(--paper);
  color: var(--ink);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 720;
  text-decoration: none;
}

.inline-link span {
  transition: transform 160ms ease;
}

.inline-link:hover {
  text-decoration: none;
}

.inline-link:hover span {
  transform: translateX(0.2rem);
}

.inline-link--light {
  color: var(--paper);
}

.site-footer {
  margin-top: clamp(2rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
}

.site-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  width: min(calc(100% - 2.5rem), var(--shell));
  padding-block: 2.2rem 2.8rem;
}

.footer-brand,
.footer-note {
  display: block;
}

.footer-brand {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 750;
}

.footer-note {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

/* Marketing */

.marketing-page {
  --measure: var(--shell);
  padding-top: clamp(2rem, 5vw, 4rem);
}

.marketing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(31rem, 1.12fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 6.5rem);
}

.marketing-hero__copy {
  position: relative;
  z-index: 2;
}

.marketing-hero h1 {
  max-width: 9.5ch;
  font-size: clamp(3.3rem, 7vw, 5.6rem);
}

.marketing-lede {
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.35rem;
  margin-top: 1.8rem;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.2rem;
  margin-top: 2rem;
  padding: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  list-style: none;
}

.trust-list li {
  position: relative;
  margin: 0;
  padding-left: 0.85rem;
}

.trust-list li::before {
  position: absolute;
  top: 0.69em;
  left: 0;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--teal);
  content: '';
}

.phase-stage {
  position: relative;
  min-height: 39rem;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 80% 20%, rgb(217 74 22 / 32%), transparent 35%),
    radial-gradient(circle at 10% 85%, rgb(15 137 125 / 24%), transparent 38%),
    linear-gradient(145deg, #211d1a 0%, #090909 68%);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.phase-stage::before {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 50%;
  content: '';
  inset: 7rem auto auto 6rem;
}

.stage-orbit {
  position: absolute;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 50%;
}

.stage-orbit--one {
  width: 31rem;
  height: 31rem;
  inset: 3.5rem auto auto 2.5rem;
}

.stage-orbit--two {
  width: 39rem;
  height: 39rem;
  inset: -0.5rem auto auto -1.5rem;
}

.stage-phone {
  position: absolute;
  z-index: 2;
  width: min(45%, 17.5rem);
  height: auto;
  border-radius: 1.35rem;
  filter: drop-shadow(0 1.5rem 2rem rgb(0 0 0 / 45%));
}

.stage-phone--home {
  bottom: -4.5rem;
  left: 13%;
  transform: rotate(-5deg);
}

.stage-phone--timer {
  top: 2.7rem;
  right: 10%;
  transform: rotate(4deg);
}

.stage-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 0.8rem;
  background: rgb(25 22 20 / 82%);
  box-shadow: 0 0.8rem 2rem rgb(0 0 0 / 22%);
  color: #fffaf2;
  font-size: 0.72rem;
  line-height: 1.2;
  backdrop-filter: blur(14px);
}

.stage-note strong,
.stage-note span {
  display: block;
}

.stage-note strong {
  color: #ff9b73;
  font-size: 1.05rem;
}

.stage-note--top {
  top: 2rem;
  left: 2rem;
}

.stage-note--bottom {
  right: 1.8rem;
  bottom: 1.8rem;
}

.live-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #50d4c6;
  box-shadow: 0 0 0 0.25rem rgb(80 212 198 / 12%);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-block: clamp(4rem, 9vw, 7rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background: var(--line);
  box-shadow: var(--shadow-sm);
}

.proof-strip div {
  display: flex;
  flex-direction: column;
  min-height: 7.5rem;
  justify-content: center;
  padding: 1.4rem 1.6rem;
  background: var(--surface);
}

.proof-strip strong {
  color: var(--text);
  font-size: 1.9rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.proof-strip span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.marketing-section {
  padding-block: clamp(3rem, 7vw, 5rem);
  scroll-margin-top: 5rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.55fr);
  align-items: end;
  gap: 2rem;
}

.section-heading h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 3.6rem);
}

.section-heading > p {
  margin: 0 0 0.35rem;
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.8rem;
}

.feature-card {
  --card-accent: var(--accent);
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  min-height: 13rem;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  background:
    radial-gradient(
      circle at 100% 0%,
      color-mix(in srgb, var(--card-accent) 10%, transparent),
      transparent 42%
    ),
    var(--surface);
  box-shadow: var(--shadow-sm);
}

.feature-card::after {
  position: absolute;
  right: -2.3rem;
  bottom: -2.3rem;
  width: 6rem;
  height: 6rem;
  border: 1px solid color-mix(in srgb, var(--card-accent) 30%, transparent);
  border-radius: 50%;
  content: '';
}

.feature-card--ember {
  --card-accent: var(--ember);
}

.feature-card--teal {
  --card-accent: var(--teal);
}

.feature-card--gold {
  --card-accent: var(--gold);
}

.feature-card--blue {
  --card-accent: var(--blue);
}

.feature-number {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--card-accent) 13%, transparent);
  color: var(--card-accent);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  place-items: center;
}

.feature-card h3 {
  margin: 0.3rem 0 0.55rem;
  font-size: 1.3rem;
}

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

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 1.8vw, 1.35rem);
  margin-top: 3rem;
}

.screenshot-grid figure {
  margin: 0;
}

.screenshot-frame {
  --frame-accent: var(--accent);
  position: relative;
  padding: clamp(0.45rem, 1vw, 0.7rem);
  overflow: hidden;
  border-radius: 1.4rem;
  background:
    radial-gradient(
      circle at 50% 110%,
      color-mix(in srgb, var(--frame-accent) 42%, transparent),
      transparent 46%
    ),
    #161412;
  box-shadow: var(--shadow-sm);
}

.screenshot-frame--ember {
  --frame-accent: var(--ember);
}

.screenshot-frame--teal {
  --frame-accent: var(--teal);
}

.screenshot-frame--gold {
  --frame-accent: var(--gold);
}

.screenshot-frame--blue {
  --frame-accent: var(--blue);
}

.screenshot-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
  transition: transform 220ms ease;
}

.screenshot-frame:hover img {
  transform: scale(1.015);
}

.screenshot-grid figcaption {
  padding: 0.85rem 0.25rem 0;
  line-height: 1.4;
}

.screenshot-grid figcaption strong,
.screenshot-grid figcaption span {
  display: block;
}

.screenshot-grid figcaption strong {
  color: var(--text);
  font-size: 0.84rem;
}

.screenshot-grid figcaption span {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.ownership-section {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: clamp(2rem, 6vw, 5rem);
  margin-block: clamp(4rem, 10vw, 8rem);
  padding: clamp(2rem, 6vw, 4.5rem);
  overflow: hidden;
  border-radius: 1.7rem;
  background:
    radial-gradient(circle at 100% 0%, rgb(49 94 232 / 24%), transparent 35%),
    radial-gradient(circle at 0% 100%, rgb(15 137 125 / 20%), transparent 35%), var(--ink);
  color: var(--paper);
}

.ownership-section h2 {
  max-width: 13ch;
  margin: 0;
  color: var(--paper);
  font-size: clamp(2.3rem, 5vw, 3.6rem);
}

.ownership-section .eyebrow {
  color: #91aaff;
}

.ownership-copy > p:not(.eyebrow) {
  max-width: 39rem;
  color: rgb(255 250 242 / 72%);
}

.ownership-points {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.ownership-points div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 0.85rem;
  background: rgb(255 255 255 / 6%);
}

.ownership-points span {
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-size: 0.75rem;
  place-items: center;
}

.ownership-points strong {
  font-size: 0.88rem;
}

.marketing-callout,
.support-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(4rem, 9vw, 7rem);
  padding: clamp(2rem, 6vw, 4rem);
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #c94318, #a82d12);
  box-shadow: 0 1.5rem 3.5rem rgb(168 45 18 / 18%);
  color: white;
}

.marketing-callout > div,
.support-callout > div {
  max-width: 45rem;
}

.marketing-callout .eyebrow,
.support-callout .eyebrow {
  color: rgb(255 255 255 / 72%);
}

.marketing-callout h2,
.support-callout h2 {
  margin: 0;
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
}

.marketing-callout p:not(.eyebrow),
.support-callout p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgb(255 255 255 / 78%);
}

/* Support */

.support-page {
  --measure: 68rem;
}

.support-hero {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 0.55fr);
  align-items: stretch;
  gap: clamp(1.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.support-hero > div:first-child {
  align-self: center;
}

.support-hero h1 {
  max-width: 11ch;
}

.support-lede {
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 18rem;
  overflow: hidden;
  padding: 1.7rem;
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at 90% 10%, rgb(255 255 255 / 20%), transparent 32%),
    linear-gradient(145deg, #d94a16, #9f2c11);
  box-shadow: var(--shadow-lg);
  color: white;
}

.contact-card::before,
.contact-card::after {
  position: absolute;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 50%;
  content: '';
}

.contact-card::before {
  width: 13rem;
  height: 13rem;
  inset: -5rem -3rem auto auto;
}

.contact-card::after {
  width: 9rem;
  height: 9rem;
  inset: -3rem -1rem auto auto;
}

.contact-card__label {
  position: relative;
  z-index: 1;
  margin-bottom: auto;
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card h2 {
  position: relative;
  z-index: 1;
  margin: 1rem 0 0.3rem;
  color: white;
  font-size: 2rem;
}

.contact-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 0.8rem;
  color: rgb(255 255 255 / 78%);
  font-size: 0.86rem;
}

.contact-card a {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  color: white;
  font-size: 0.9rem;
  font-weight: 750;
}

.support-topics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: clamp(4rem, 8vw, 6rem);
}

.support-topics > a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  color: var(--text);
  text-decoration: none;
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.support-topics > a:hover {
  border-color: var(--line-strong);
  text-decoration: none;
  transform: translateY(-2px);
}

.support-topics strong,
.support-topics small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-topics strong {
  font-size: 0.82rem;
}

.support-topics small {
  margin-top: 0.05rem;
  color: var(--muted);
  font-size: 0.66rem;
}

.topic-icon {
  display: grid;
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: 0.65rem;
  color: white;
  font-size: 1rem;
  font-weight: 800;
  place-items: center;
}

.topic-icon--ember {
  background: var(--ember);
}

.topic-icon--blue {
  background: var(--blue);
}

.topic-icon--teal {
  background: var(--teal);
}

.topic-icon--gold {
  background: var(--gold);
}

.faq-section {
  display: grid;
  grid-template-columns: 13rem 1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  padding-block: 2.6rem;
  border-top: 1px solid var(--line);
  scroll-margin-top: 5rem;
}

.faq-section header h2 {
  margin: 0;
  font-size: 1.35rem;
}

.faq-list {
  min-width: 0;
}

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

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

.faq-list summary {
  position: relative;
  padding: 1.15rem 2.8rem 1.15rem 0;
  color: var(--text);
  font-weight: 720;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  position: absolute;
  top: 50%;
  right: 0.4rem;
  width: 1rem;
  height: 1rem;
  transform: translateY(-50%);
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.8rem;
  height: 1px;
  background: var(--muted);
  content: '';
  transform: translate(-50%, -50%);
  transition: transform 160ms ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  max-width: 46rem;
  padding: 0 2.5rem 1.2rem 0;
  color: var(--muted);
}

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

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

.faq-answer strong {
  color: var(--text);
}

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

/* Dark appearance */

@media (prefers-color-scheme: dark) {
  :root {
    --background: #171614;
    --surface: #211f1c;
    --surface-strong: #272421;
    --text: #f4efe8;
    --muted: #aaa298;
    --line: #393530;
    --line-strong: #514b44;
    --accent: #f0825e;
    --shadow-sm: 0 0.6rem 1.6rem rgb(0 0 0 / 18%);
    --shadow-lg: 0 2rem 5rem rgb(0 0 0 / 35%);
  }
}

/* Responsive */

@media (max-width: 60rem) {
  .marketing-hero {
    grid-template-columns: 1fr;
  }

  .marketing-hero__copy {
    max-width: 43rem;
  }

  .marketing-hero h1 {
    max-width: 11ch;
  }

  .phase-stage {
    min-height: 36rem;
  }

  .support-topics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 48rem) {
  .section-heading,
  .ownership-section,
  .support-hero {
    grid-template-columns: 1fr;
  }

  .section-heading > p {
    max-width: 36rem;
  }

  .screenshot-grid {
    display: flex;
    width: calc(100% + 1.25rem);
    gap: 0.8rem;
    margin-right: -1.25rem;
    padding-right: 1.25rem;
    overflow-x: auto;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .screenshot-grid::-webkit-scrollbar {
    display: none;
  }

  .screenshot-grid figure {
    flex: 0 0 min(72vw, 18rem);
    scroll-snap-align: start;
  }

  .marketing-callout,
  .support-callout {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-section header {
    padding-bottom: 0.4rem;
  }

  .contact-card {
    min-height: 15rem;
  }
}

@media (max-width: 36rem) {
  html {
    font-size: 16px;
  }

  .site-header__inner,
  .site-footer__inner,
  .content {
    width: min(calc(100% - 2rem), var(--measure));
  }

  .site-header__inner {
    min-height: 4rem;
  }

  .wordmark {
    gap: 0.45rem;
  }

  .wordmark__mark {
    width: 1.15rem;
    height: 1.15rem;
  }

  .site-nav {
    gap: 0.85rem;
  }

  .site-nav a {
    font-size: 0.63rem;
    letter-spacing: 0.05em;
  }

  .content {
    padding-top: 2.5rem;
  }

  .site-footer__inner {
    flex-direction: column;
  }

  .marketing-hero h1 {
    max-width: 10ch;
    font-size: clamp(3rem, 14vw, 4rem);
  }

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

  .trust-list {
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: start;
  }

  .phase-stage {
    min-height: 28rem;
    border-radius: 1.35rem;
  }

  .stage-phone {
    width: 49%;
    border-radius: 0.9rem;
  }

  .stage-phone--home {
    bottom: -2rem;
    left: 7%;
  }

  .stage-phone--timer {
    top: 2.2rem;
    right: 6%;
  }

  .stage-note--top {
    top: 1rem;
    left: 1rem;
  }

  .stage-note--bottom {
    right: 0.8rem;
    bottom: 0.8rem;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip div {
    min-height: 6.5rem;
    padding: 1.1rem;
  }

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

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

  .ownership-section {
    border-radius: 1.2rem;
  }

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

  .support-topics strong,
  .support-topics small {
    white-space: normal;
  }
}

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

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