@font-face {
  font-family: "Instrument Sans";
  src: url("assets/fonts/InstrumentSans-Variable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 75% 100%;
  font-display: swap;
}

@font-face {
  font-family: "Bricolage Grotesque";
  src: url("assets/fonts/BricolageGrotesque-Variable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 200 800;
  font-stretch: 75% 100%;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #11110f;
  --bg-soft: #1b1b18;
  --surface: #20201d;
  --surface-raised: #292821;
  --text: #ffffff;
  --muted: #ffffff;
  --quiet: #ffffff;
  --heading-text: #ffffff;
  --body-text: #ffffff;
  --border: #403d32;
  --border-strong: #756f56;
  --accent: #d6c675;
  --accent-strong: #efe08d;
  --accent-ink: #15130e;
  --green: #8bc34a;
  --blue: #36c5f0;
  --orange: #ff9f43;
  --pink: #ff6b81;
  --purple: #d86cff;
  --carousel-control-bg: #8e8e88;
  --carousel-control-text: #11110f;
  --carousel-control-border: #8e8e88;
  --carousel-control-hover: #b5b4ad;
  --lightbox-control-bg: #f7f3e9;
  --lightbox-control-text: #11110f;
  --lightbox-control-border: #ffffff;
  --lightbox-control-hover: #efe08d;
  --screenshot-border: #5b574b;
  --carousel-frame-shadow: 0 18px 48px rgb(0 0 0 / 38%);
  --pattern-opacity: .18;
  --content-shade: rgb(0 0 0 / 72%);
  --shadow: 0 24px 80px rgb(0 0 0 / 38%);
  --radius: 22px;
  --header-height: 112px;
  --page-gutter: clamp(16px, 4vw, 64px);
  --content-width: 1180px;
  --hero-heading-size: clamp(28px, min(3.4vw, 6svh), 48px);
  --hero-chip-size: clamp(11px, min(1.1vw, 2svh), 14px);
  --hero-chip-pad-y: clamp(5px, min(.55vw, .9svh), 8px);
  --hero-chip-pad-x: clamp(8px, min(.9vw, 1.5svh), 13px);
  --hero-cta-size: clamp(20px, min(2.4vw, 4.5svh), 34px);
  --section-heading-size: clamp(32px, 3vw, 46px);
  --section-copy-size: clamp(22px, 2.2vw, 25px);
  --font-display: "Bricolage Grotesque", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--font-body);
}

:root[data-theme="light"] {
  color-scheme: light;
  --bg: #f4f1e9;
  --bg-soft: #ebe7dc;
  --surface: #fbfaf6;
  --surface-raised: #ffffff;
  --text: #11110f;
  --muted: #11110f;
  --quiet: #11110f;
  --heading-text: #11110f;
  --body-text: #11110f;
  --border: #ddd7c9;
  --border-strong: #938d70;
  --accent: #7c8f3b;
  --accent-strong: #536524;
  --accent-ink: #f7f5ee;
  --carousel-control-bg: #6e6d67;
  --carousel-control-text: #ffffff;
  --carousel-control-border: #6e6d67;
  --carousel-control-hover: #55554f;
  --screenshot-border: #c4bcaa;
  --carousel-frame-shadow: 0 16px 42px rgb(62 52 35 / 24%);
  --pattern-opacity: .15;
  --content-shade: rgb(255 255 255 / 78%);
  --shadow: 0 24px 80px rgb(82 72 52 / 18%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  scrollbar-gutter: stable;
}

body {
  position: relative;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-scroll-locked {
  overflow: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

body::before {
  opacity: var(--pattern-opacity);
  filter: blur(.25px);
  background-image: url("assets/background-pattern-dark.svg");
  background-position: 50% 18px;
  background-size: 620px 420px;
  background-repeat: repeat;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 10%, black 72%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, black 10%, black 72%, transparent 100%);
}

body::after {
  top: -14vh;
  right: auto;
  bottom: -14vh;
  left: 50%;
  width: min(1240px, 72vw);
  background: var(--content-shade);
  filter: blur(108px);
  transform: translateX(-50%);
}

:root[data-theme="light"] body::before {
  background-image: url("assets/background-pattern-light.svg");
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

body.theme-ready,
body.theme-ready::before,
body.theme-ready::after,
body.theme-ready .site-header,
body.theme-ready .progress-bar,
body.theme-ready .progress-fill,
body.theme-ready .brand,
body.theme-ready .brand-mark,
body.theme-ready .site-header nav a,
body.theme-ready .theme-toggle,
body.theme-ready .theme-toggle::before,
body.theme-ready .theme-option,
body.theme-ready .button.primary,
body.theme-ready .release-meta,
body.theme-ready .trust-list li,
body.theme-ready .screenshot-frame,
body.theme-ready .benefit-row,
body.theme-ready .faq-list details,
body.theme-ready .faq-list summary,
body.theme-ready .download-modal-panel,
body.theme-ready .download-modal-cancel,
body.theme-ready .download-modal-continue,
body.theme-ready .term-modal-panel,
body.theme-ready .term-modal-close,
body.theme-ready .term-modal-ok,
body.theme-ready .site-footer,
body.theme-ready .site-footer a {
  transition:
    background 360ms ease,
    background-color 360ms ease,
    border-color 360ms ease,
    box-shadow 360ms ease,
    color 360ms ease,
    fill 360ms ease;
}

body::selection {
  background: color-mix(in srgb, var(--accent) 45%, transparent);
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--surface-raised);
  color: var(--text);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px var(--page-gutter);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  border-bottom-color: color-mix(in srgb, var(--border) 78%, transparent);
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.progress-bar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: color-mix(in srgb, var(--border) 65%, transparent);
}

.progress-fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  transform-origin: left center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 760;
  letter-spacing: -.018em;
  text-decoration: none;
}

.brand-mark {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 8px 22px rgb(0 0 0 / 18%);
}

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

.brand.spin-logo .brand-mark img {
  animation: logo-spin 850ms cubic-bezier(.2, .78, .25, 1.12) both;
}

.brand.first-launch-spin .brand-mark img {
  animation: logo-spin 1050ms cubic-bezier(.2, .78, .25, 1.12) both;
}

.site-header nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
}

.site-header nav a {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.012em;
  text-decoration: none;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: none;
}

.menu-backdrop {
  display: none;
}

.theme-toggle {
  --theme-toggle-width: 92px;
  --theme-toggle-height: 48px;
  --theme-thumb-size: 40px;
  --theme-toggle-inset: 3px;
  --theme-thumb-shift: calc(var(--theme-toggle-width) - 2px - var(--theme-toggle-inset) - var(--theme-toggle-inset) - var(--theme-thumb-size));
  position: relative;
  width: var(--theme-toggle-width);
  height: var(--theme-toggle-height);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--quiet);
  font: inherit;
  cursor: pointer;
  overflow: hidden;
}

.theme-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: var(--theme-toggle-inset);
  width: var(--theme-thumb-size);
  height: var(--theme-thumb-size);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent) 28%, transparent);
  transform: translate3d(0, -50%, 0);
  transition: transform 180ms ease;
}

:root[data-theme="light"] .theme-toggle::before {
  transform: translate3d(var(--theme-thumb-shift), -50%, 0);
}

.theme-option {
  position: absolute;
  top: 50%;
  width: var(--theme-thumb-size);
  z-index: 1;
  display: grid;
  place-items: center;
  height: var(--theme-thumb-size);
  border-radius: 50%;
  color: var(--quiet);
  transform: translateY(-50%);
  transition: color 180ms ease;
}

.theme-night {
  left: var(--theme-toggle-inset);
}

.theme-day {
  right: var(--theme-toggle-inset);
}

.theme-option svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.theme-night svg {
  fill: currentColor;
  stroke: none;
}

:root[data-theme="dark"] .theme-night,
:root[data-theme="light"] .theme-day {
  color: var(--accent-ink);
}

.section {
  width: min(var(--content-width), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: clamp(44px, 6vw, 76px) 0;
}

.hero {
  position: relative;
  width: min(var(--content-width), calc(100% - (var(--page-gutter) * 2)));
  min-height: calc(100svh - var(--header-height));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.5vw, 20px);
  text-align: center;
  padding-top: clamp(16px, 2vw, 24px);
  padding-bottom: clamp(28px, 3vw, 40px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 860;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--heading-text);
  font-family: var(--font-body);
  font-optical-sizing: auto;
}

h1 {
  max-width: 100%;
  margin-bottom: 0;
  font-size: var(--hero-heading-size);
  font-weight: 740;
  line-height: 1.06;
  letter-spacing: -.026em;
  text-shadow: 0 2px 22px var(--bg), 0 1px 4px var(--bg);
}

.hero-title-tail {
  display: inline;
}

.term-ref {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-decoration-line: underline;
  text-decoration-style: dashed;
  text-decoration-thickness: 1px;
  text-underline-offset: .18em;
  touch-action: manipulation;
  vertical-align: baseline;
}

.term-ref::after {
  content: "";
  position: absolute;
  inset: -8px -4px;
}

.term-ref:hover,
.term-ref:focus-visible {
  text-decoration-thickness: 2px;
}

.term-ref:focus-visible {
  border-radius: .14em;
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

h2 {
  margin-bottom: 14px;
  font-size: var(--section-heading-size);
  font-weight: 720;
  line-height: 1.08;
  letter-spacing: -.024em;
  text-wrap: balance;
}

p {
  color: var(--body-text);
  font-size: clamp(17.5px, 1.25vw, 19px);
  line-height: 1.58;
}

.download-block {
  margin: 0;
  text-align: center;
}

.button {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 16px 34px;
  border: 0;
  border-radius: 28px;
  font-size: var(--hero-cta-size);
  font-weight: 450;
  text-decoration: none;
  transition: transform 170ms ease, box-shadow 170ms ease, filter 170ms ease;
}

.button.primary {
  background: #20201f;
  color: #fff;
  box-shadow: 0 18px 42px rgb(0 0 0 / 34%);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.download-button {
  min-width: min(100%, 420px);
}

.confetti-piece {
  position: fixed;
  z-index: 60;
  width: 10px;
  height: 16px;
  border-radius: 3px;
  pointer-events: none;
  animation: confetti-burst 900ms cubic-bezier(.12, .76, .32, 1) forwards;
}

.apple-mark {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.2em;
  line-height: 1;
  transform: translateY(-1px);
}

.release-meta {
  margin: 7px 0 0;
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.4;
}

.trust-list {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 9px 12px;
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  flex: 0 0 auto;
  padding: var(--hero-chip-pad-y) var(--hero-chip-pad-x);
  border: 0;
  border-radius: 999px;
  background: var(--fact-bg, var(--surface));
  color: var(--fact-text, var(--text));
  font-size: var(--hero-chip-size);
  font-weight: 860;
  box-shadow: none;
}

.trust-row-break {
  display: none;
}

.trust-list li:nth-child(1) {
  --fact-bg: #36c5f0;
  --fact-text: #07161b;
}

.trust-list li:nth-child(2) {
  --fact-bg: #ff9f43;
  --fact-text: #1c1004;
}

.trust-list li:nth-child(3) {
  --fact-bg: #ff6b81;
  --fact-text: #22070c;
}

.trust-list li:nth-child(4) {
  --fact-bg: #9b8cff;
  --fact-text: #100c2a;
}

.trust-list li:nth-child(6) {
  --fact-bg: #efe08d;
  --fact-text: #1b1707;
}

.trust-list li:nth-child(7) {
  --fact-bg: #4dd4ac;
  --fact-text: #061711;
}

.trust-list li:nth-child(8) {
  --fact-bg: #a7d76b;
  --fact-text: #101907;
}

.hero-shot {
  width: min(620px, 100%);
  min-width: 0;
  margin-block: clamp(12px, 1.2vw, 18px);
}

.hero .screenshot-frame img {
  aspect-ratio: 1224 / 768;
}

.screenshot-frame {
  position: relative;
  margin: 0;
}

.screenshot-carousel {
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 16px;
  background: transparent;
  box-shadow: none;
}

.screenshot-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1224 / 768;
  overflow: hidden;
  border-radius: 16px;
  object-fit: contain;
  object-position: left top;
}

.carousel-viewport {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--screenshot-border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--carousel-frame-shadow);
  touch-action: pan-y pinch-zoom;
}

.carousel-track {
  display: flex;
  width: 100%;
  transition: transform 320ms cubic-bezier(.22, .72, .2, 1);
  will-change: transform;
}

.carousel-track.is-resetting,
.lightbox-track.is-resetting {
  transition: none;
}

.carousel-slide {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  min-width: 0;
  flex: 0 0 100%;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 16px;
  background: transparent;
  cursor: zoom-in;
}

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

.carousel-arrow,
.lightbox-arrow {
  width: 40px;
  height: 32px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--carousel-control-border);
  border-radius: 11px;
  background: var(--carousel-control-bg);
  color: var(--carousel-control-text);
  box-shadow: 0 6px 18px rgb(0 0 0 / 22%);
  cursor: pointer;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
  touch-action: manipulation;
}

.carousel-arrow svg,
.lightbox-arrow svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-arrow:hover,
.carousel-arrow:focus-visible,
.lightbox-arrow:hover,
.lightbox-arrow:focus-visible {
  border-color: var(--carousel-control-hover);
  background: var(--carousel-control-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgb(0 0 0 / 28%);
}

.carousel-arrow:active,
.lightbox-arrow:active {
  transform: translateY(0) scale(.97);
}

.carousel-arrow:focus-visible,
.lightbox-arrow:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue) 52%, transparent);
  outline-offset: 3px;
}

.carousel-controls,
.lightbox-controls {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.carousel-controls {
  min-height: 32px;
  margin-top: 8px;
}

.screenshot-carousel.is-single .carousel-controls {
  display: none;
}

.theme-shot {
  cursor: zoom-in;
  transition: opacity 220ms ease, filter 320ms ease;
}

.theme-shot.is-switching {
  opacity: 0;
  filter: blur(3px) saturate(.82);
}

.download-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: clamp(18px, 5vw, 48px);
  background: rgb(0 0 0 / 68%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 70ms ease-out;
}

.download-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.download-modal-panel {
  width: min(100%, 560px);
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid color-mix(in srgb, var(--border) 82%, transparent);
  border-radius: 18px;
  background: var(--surface-raised);
  box-shadow: var(--shadow);
}

.download-modal-panel h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.05;
}

.download-modal-panel p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
  font-weight: 720;
  line-height: 1.4;
}

.download-modal-panel .download-modal-question {
  margin-top: 12px;
}

.download-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
}

.download-modal-cancel,
.download-modal-continue {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font: inherit;
  font-size: 1rem;
  font-weight: 860;
  text-decoration: none;
  cursor: pointer;
}

.download-modal-cancel {
  border: 1px solid color-mix(in srgb, var(--border-strong) 65%, transparent);
  background: var(--surface);
  color: var(--text);
}

.download-modal-continue {
  border: 1px solid color-mix(in srgb, var(--accent-strong) 72%, transparent);
  background: var(--accent-strong);
  color: var(--accent-ink);
}

.download-modal-cancel:hover,
.download-modal-cancel:focus-visible,
.download-modal-continue:hover,
.download-modal-continue:focus-visible {
  transform: translateY(-1px);
}

.download-modal-cancel:focus-visible,
.download-modal-continue:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent-strong) 58%, transparent);
  outline-offset: 3px;
}

.term-modal {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: clamp(18px, 5vw, 48px);
  background: rgb(0 0 0 / 68%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 70ms ease-out;
}

.term-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.term-modal-panel {
  position: relative;
  width: min(100%, 640px);
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid color-mix(in srgb, var(--border) 82%, transparent);
  border-radius: 18px;
  background: var(--surface-raised);
  box-shadow: var(--shadow);
}

.term-modal-panel h2 {
  margin: 0 48px 18px 0;
  color: var(--text);
  font-size: clamp(1.7rem, 3.4vw, 2.45rem);
  line-height: 1.05;
  text-shadow: none;
}

.term-modal-panel p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  font-weight: 680;
  line-height: 1.55;
}

.term-modal-panel p:last-of-type {
  margin-bottom: 0;
}

.term-highlight {
  padding: .03em .18em;
  border-radius: 6px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-weight: 840;
}

.term-highlight-red {
  background: color-mix(in srgb, var(--pink) 22%, transparent);
  color: color-mix(in srgb, var(--pink) 82%, var(--text));
}

.term-highlight-green {
  background: color-mix(in srgb, var(--green) 22%, transparent);
  color: color-mix(in srgb, var(--green) 82%, var(--text));
}

:root[data-theme="light"] .term-highlight-red {
  color: #9b1c3d;
}

:root[data-theme="light"] .term-highlight-green {
  color: #3d6718;
}

.term-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid color-mix(in srgb, var(--border-strong) 72%, transparent);
  border-radius: 50%;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.term-modal-close::before,
.term-modal-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 17px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}

.term-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.term-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.term-modal-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 28px;
}

.term-modal-ok {
  min-height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid color-mix(in srgb, var(--accent-strong) 72%, transparent);
  border-radius: 999px;
  background: var(--accent-strong);
  color: var(--accent-ink);
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  font-weight: 860;
}

.term-modal-close:hover,
.term-modal-close:focus-visible,
.term-modal-ok:hover,
.term-modal-ok:focus-visible {
  transform: translateY(-1px);
}

.term-modal-close:focus-visible,
.term-modal-ok:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent-strong) 58%, transparent);
  outline-offset: 3px;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: clamp(10px, 2vw, 28px);
  background: rgb(0 0 0 / 88%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 70ms ease-out;
}

.image-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  width: min(100%, 1400px);
  height: min(calc(100svh - clamp(24px, 4vw, 64px)), 880px);
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  gap: 14px;
  padding: 58px clamp(10px, 2vw, 28px) 10px;
}

.lightbox-stage {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
}

.lightbox-track {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  transition: transform 320ms cubic-bezier(.22, .72, .2, 1);
  will-change: transform;
}

.lightbox-slide {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  flex: 0 0 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.lightbox-image {
  width: 100%;
  height: 100%;
  max-width: 1224px;
  max-height: 100%;
  min-height: 0;
  border-radius: 16px;
  filter: drop-shadow(0 28px 45px rgb(0 0 0 / 48%));
  object-fit: contain;
  user-select: none;
}

.lightbox-close {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 44px;
  height: 44px;
  border: 2px solid var(--green);
  border-radius: 50%;
  background: #20201f;
  color: #fff;
  font: inherit;
  cursor: pointer;
}

.lightbox-arrow {
  position: static;
  width: 44px;
  height: 36px;
  border-color: var(--lightbox-control-border);
  background: var(--lightbox-control-bg);
  color: var(--lightbox-control-text);
  box-shadow:
    0 0 0 1px rgb(0 0 0 / 35%),
    0 8px 22px rgb(0 0 0 / 48%);
  opacity: 1;
}

.lightbox-arrow:hover,
.lightbox-arrow:focus-visible {
  border-color: var(--lightbox-control-hover);
  background: var(--lightbox-control-hover);
}

.lightbox-arrow[hidden] {
  display: none;
}

.lightbox-controls {
  width: min(100%, 1224px);
  min-height: 36px;
  position: relative;
  z-index: 2;
}

.lightbox-close::before,
.lightbox-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}

.lightbox-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lightbox-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.down-arrow {
  position: static;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  color: var(--text);
  font-size: 19px;
  text-decoration: none;
  animation: arrow-bob-flow 1500ms ease-in-out infinite;
}

.benefits {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
  padding: clamp(18px, 2.4vw, 30px);
  border: 1px solid color-mix(in srgb, var(--border) 88%, transparent);
  border-radius: 19px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: 0 22px 64px rgb(0 0 0 / 18%);
  overflow: hidden;
}

.benefit-row.reverse {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  direction: ltr;
}

.benefit-row.reverse .screenshot-frame {
  grid-column: 2;
  grid-row: 1;
}

.benefit-row.reverse .benefit-copy {
  grid-column: 1;
  grid-row: 1;
}

.benefit-copy p:last-child {
  margin-bottom: 0;
}

.benefit-copy h2 {
  margin-bottom: 18px;
  line-height: 1.07;
  text-shadow: none;
}

.benefit-copy p {
  color: var(--body-text);
  font-size: var(--section-copy-size);
  font-weight: 470;
  line-height: 1.48;
  letter-spacing: -.009em;
}

.benefit-row .screenshot-frame {
  box-shadow: none;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-section {
  padding-bottom: clamp(20px, 3vw, 34px);
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  box-shadow: 0 16px 50px rgb(0 0 0 / 12%);
  overflow: hidden;
}

.faq-list summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--section-copy-size);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.008em;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "";
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-radius: 50%;
  background:
    linear-gradient(var(--accent-strong), var(--accent-strong)) center / 12px 2px no-repeat,
    linear-gradient(var(--accent-strong), var(--accent-strong)) center / 2px 12px no-repeat;
  transition: transform 220ms ease, background 220ms ease;
}

.faq-list details.is-open summary::after {
  background: linear-gradient(var(--accent-strong), var(--accent-strong)) center / 12px 2px no-repeat;
  transform: rotate(180deg);
}

.faq-content {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: height 260ms ease, opacity 200ms ease;
}

.faq-list details[open] .faq-content {
  opacity: 1;
}

.faq-content p,
.roadmap-list {
  max-width: 980px;
  margin: 0;
  padding: 0 22px 22px;
}

.faq-content p {
  font-size: var(--section-copy-size);
  font-weight: 470;
  line-height: 1.54;
}

.faq-highlight,
.feature-highlight {
  padding: .05em .16em .08em;
  border-radius: .25em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-weight: 690;
}

.faq-highlight-green {
  background: color-mix(in srgb, var(--green) 17%, transparent);
  color: color-mix(in srgb, var(--green) 82%, var(--text));
}

.faq-highlight-blue {
  background: color-mix(in srgb, var(--blue) 17%, transparent);
  color: color-mix(in srgb, var(--blue) 84%, var(--text));
}

.faq-highlight-orange {
  background: color-mix(in srgb, var(--orange) 17%, transparent);
  color: color-mix(in srgb, var(--orange) 86%, var(--text));
}

.faq-highlight-pink {
  background: color-mix(in srgb, var(--pink) 17%, transparent);
  color: color-mix(in srgb, var(--pink) 88%, var(--text));
}

.faq-highlight-purple {
  background: color-mix(in srgb, var(--purple) 17%, transparent);
  color: color-mix(in srgb, var(--purple) 86%, var(--text));
}

:root[data-theme="light"] .faq-highlight,
:root[data-theme="light"] .feature-highlight {
  font-weight: 740;
}

:root[data-theme="light"] .faq-highlight-green {
  color: #3d6718;
}

:root[data-theme="light"] .faq-highlight-blue {
  color: #075a9f;
}

:root[data-theme="light"] .faq-highlight-orange {
  color: #914100;
}

:root[data-theme="light"] .faq-highlight-pink {
  color: #9b1c3d;
}

:root[data-theme="light"] .faq-highlight-purple {
  color: #74248a;
}

.roadmap-list {
  display: grid;
  gap: 8px;
  list-style: none;
}

.roadmap-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.roadmap-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.about-section {
  padding-top: clamp(28px, 4vw, 52px);
  padding-bottom: clamp(44px, 6vw, 76px);
}

.about-copy {
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}

.about-copy h2 {
  max-width: 19ch;
  margin-bottom: clamp(24px, 3vw, 38px);
}

.about-copy p {
  margin-bottom: clamp(24px, 3vw, 36px);
  color: var(--body-text);
  font-size: var(--section-copy-size);
  font-weight: 470;
  line-height: 1.54;
}

.about-highlight {
  padding: .05em .16em .08em;
  border-radius: .25em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-weight: 690;
}

.about-highlight-orange {
  background: color-mix(in srgb, var(--orange) 17%, transparent);
  color: color-mix(in srgb, var(--orange) 86%, var(--text));
}

.about-highlight-pink {
  background: color-mix(in srgb, var(--pink) 17%, transparent);
  color: color-mix(in srgb, var(--pink) 88%, var(--text));
}

.about-highlight-blue {
  background: color-mix(in srgb, var(--blue) 17%, transparent);
  color: color-mix(in srgb, var(--blue) 84%, var(--text));
}

.about-highlight-green {
  background: color-mix(in srgb, var(--green) 17%, transparent);
  color: color-mix(in srgb, var(--green) 82%, var(--text));
}

:root[data-theme="light"] .about-highlight-orange,
:root[data-theme="light"] .about-highlight-pink,
:root[data-theme="light"] .about-highlight-blue,
:root[data-theme="light"] .about-highlight-green {
  font-weight: 740;
}

:root[data-theme="light"] .about-highlight-orange {
  color: #914100;
}

:root[data-theme="light"] .about-highlight-pink {
  color: #9b1c3d;
}

:root[data-theme="light"] .about-highlight-blue {
  color: #075a9f;
}

:root[data-theme="light"] .about-highlight-green {
  color: #3d6718;
}

.about-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0 !important;
}

.about-author strong {
  font-weight: 860;
}

.author-profile {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgb(0 0 0 / 16%);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.author-profile svg {
  width: 24px;
  height: 24px;
}

.author-profile:hover,
.author-profile:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, #0a66c2 72%, var(--border));
  background: var(--surface-raised);
}

.author-profile:focus-visible {
  outline: 3px solid color-mix(in srgb, #0a66c2 48%, transparent);
  outline-offset: 3px;
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: 18px 0 16px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-links {
  width: min(var(--content-width), calc(100% - (var(--page-gutter) * 2)));
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 56px;
  margin: 0 auto 20px;
}

.footer-links a {
  color: var(--muted);
  font-size: 18px;
  font-weight: 760;
  letter-spacing: 0;
}

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

.site-footer p {
  margin: 0;
  color: var(--quiet);
  font-size: 14px;
  letter-spacing: .08em;
}

.site-footer a {
  color: var(--text);
  font-weight: 880;
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy.reveal {
  transition-delay: 0ms;
}

.hero .trust-list.reveal {
  transition-delay: 90ms;
}

.hero .hero-shot.reveal {
  transition-delay: 180ms;
}

.hero .download-block.reveal {
  transition-delay: 270ms;
}

body.is-loading .hero-copy,
body.is-loading .hero-shot,
body.is-loading .download-block,
body.is-loading .trust-list {
  opacity: 0;
  transform: translateY(18px);
}

@keyframes logo-spin {
  from {
    transform: rotate(-360deg) scale(.88);
  }

  to {
    transform: rotate(0) scale(1);
  }
}

@keyframes arrow-bob-flow {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(7px);
  }
}

@keyframes confetti-burst {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--confetti-x)), calc(-50% + var(--confetti-y))) rotate(var(--confetti-rotate)) scale(.8);
  }
}

@media (max-width: 1120px) {
  :root {
    --media-frame-width: min(680px, 78vw);
  }

  .benefit-row {
    grid-template-columns: 1fr;
    gap: clamp(20px, 4vw, 30px);
  }

  .benefit-row.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .benefit-row.reverse .screenshot-frame,
  .benefit-row.reverse .benefit-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
    justify-content: space-between;
    gap: clamp(12px, 2svh, 24px);
    padding-block: clamp(20px, 4svh, 48px);
  }

  .trust-list {
    width: 100%;
  }

  .hero-shot {
    width: var(--media-frame-width);
    margin-inline: auto;
  }

  .hero .screenshot-frame {
    width: 100%;
    margin-inline: auto;
  }

  .benefit-row .screenshot-frame {
    width: min(100%, var(--media-frame-width));
    margin-inline: auto;
  }

  .benefit-row .benefit-copy {
    width: min(100%, var(--media-frame-width));
    margin-inline: auto;
  }
}

@media (min-width: 768px) and (max-width: 1120px) {
  :root {
    --header-height: 88px;
    --page-gutter: clamp(20px, 3vw, 32px);
    --hero-heading-size: clamp(28px, min(4.2vw, 5.4svh), 42px);
    --hero-chip-size: clamp(11px, min(1.8vw, 2.3svh), 15px);
    --hero-chip-pad-y: clamp(5px, min(.8vw, 1svh), 8px);
    --hero-chip-pad-x: clamp(8px, min(1.4vw, 1.8svh), 12px);
    --hero-cta-size: clamp(20px, min(2.8vw, 4svh), 30px);
  }

  .site-header {
    min-height: var(--header-height);
    gap: 16px;
    padding-block: 14px;
  }

  .brand {
    gap: 10px;
    font-size: 18px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .site-header nav {
    position: static;
    flex: 1;
    justify-content: center;
    gap: clamp(12px, 2.4vw, 28px);
    transform: none;
  }

  .site-header nav a {
    font-size: clamp(16px, 2.2vw, 20px);
  }

  .theme-toggle {
    --theme-toggle-width: 68px;
    --theme-toggle-height: 36px;
    --theme-thumb-size: 28px;
    width: var(--theme-toggle-width);
    height: var(--theme-toggle-height);
  }

  .theme-toggle::before {
    width: var(--theme-thumb-size);
    height: var(--theme-thumb-size);
  }

  .theme-option {
    height: var(--theme-thumb-size);
  }

  .theme-option svg {
    width: 18px;
    height: 18px;
  }

}

@media (min-width: 768px) {
  .trust-list.chips-one-row {
    flex-wrap: nowrap;
  }

  .trust-list.chips-two-rows {
    flex-wrap: wrap;
    column-gap: clamp(8px, 1.4vw, 14px);
    row-gap: clamp(4px, .5vw, 7px);
  }

  .trust-list.chips-two-rows .trust-row-break {
    display: block;
    flex: 0 0 100%;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
  }
}

@media (min-width: 1121px) {
  h1 {
    white-space: nowrap;
  }
}

@media (min-width: 1121px) and (max-height: 840px) {
  :root {
    --header-height: 88px;
  }

  .site-header {
    min-height: var(--header-height);
    padding-block: 12px;
  }

  .brand {
    font-size: 20px;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
  }

  .site-header nav a {
    font-size: 23px;
  }

  .hero {
    justify-content: space-between;
    gap: clamp(10px, 1.6svh, 18px);
    padding-block: clamp(10px, 2svh, 20px);
  }

  h1 {
    font-size: clamp(28px, min(3vw, 5svh), 40px);
  }

  .trust-list li {
    padding: var(--hero-chip-pad-y) var(--hero-chip-pad-x);
    font-size: var(--hero-chip-size);
  }

  .hero-shot {
    width: min(600px, 52vw);
  }

  .button {
    min-height: 54px;
    padding: 12px 26px;
    font-size: clamp(20px, 2.2vw, 28px);
  }

  .release-meta {
    margin-top: 4px;
    font-size: 11px;
  }
}

@media (min-width: 768px) and (max-width: 1120px) and (max-height: 800px) {
  :root {
    --header-height: 80px;
  }

  .site-header {
    min-height: var(--header-height);
    padding-block: 10px;
  }

  .brand {
    font-size: 19px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero {
    justify-content: space-between;
    gap: clamp(8px, 1.4svh, 14px);
    padding-block: clamp(12px, 2svh, 20px);
  }

  h1 {
    font-size: clamp(27px, min(4.2vw, 5svh), 38px);
  }

  .trust-list {
    flex-wrap: wrap;
  }

  .trust-list li {
    padding: var(--hero-chip-pad-y) var(--hero-chip-pad-x);
    font-size: var(--hero-chip-size);
  }

  .hero-shot {
    width: min(500px, 58vh);
  }

  .button {
    min-height: 52px;
    padding: 12px 24px;
    font-size: 23px;
  }

  .release-meta {
    margin-top: 3px;
    font-size: 11px;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 72px;
    --page-gutter: 16px;
    --hero-heading-size: clamp(24px, min(7.4vw, 5.4svh), 36px);
    --hero-chip-size: clamp(10px, min(3vw, 1.8svh), 12px);
    --hero-chip-pad-y: clamp(4px, min(1.2vw, .8svh), 6px);
    --hero-chip-pad-x: clamp(7px, min(2vw, 1.4svh), 10px);
    --hero-cta-size: clamp(17px, min(5vw, 3.2svh), 22px);
    --section-heading-size: clamp(28px, 7.8vw, 32px);
    --section-copy-size: clamp(18px, 4.8vw, 21px);
    --media-frame-width: min(calc(100% - 24px), clamp(280px, 60svh, 620px));
  }

  .site-header {
    min-height: var(--header-height);
    display: flex;
    gap: 8px;
    padding-block: 10px;
    padding-inline: 12px;
  }

  .brand > span:last-child {
    display: inline;
  }

  .brand-mark,
  .brand-mark img {
    display: block;
  }

  .brand {
    gap: 8px;
    font-size: 16px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .site-header nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 8px;
    left: 8px;
    z-index: 2;
    transform: none;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 8px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: color-mix(in srgb, var(--bg) 96%, transparent);
    box-shadow: var(--shadow);
  }

  .site-header.menu-open nav {
    display: flex;
  }

  .site-header.menu-open + .menu-backdrop {
    display: block;
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 9;
    padding: 0;
    border: 0;
    background: rgb(0 0 0 / 62%);
  }

  .site-header nav a {
    padding: 10px 12px;
    border-radius: 9px;
    font-size: 16px;
    text-align: left;
  }

  .site-header nav a:first-child {
    padding-right: 72px;
  }

  .site-header nav a:hover,
  .site-header nav a:focus-visible {
    background: var(--surface);
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
    display: grid;
    place-content: center;
    gap: 4px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    margin-left: auto;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  .menu-toggle span {
    width: 16px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform 80ms ease-out, opacity 60ms linear;
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .theme-toggle {
    --theme-toggle-width: 54px;
    --theme-toggle-height: 32px;
    --theme-thumb-size: 24px;
    display: none;
    width: var(--theme-toggle-width);
    height: var(--theme-toggle-height);
  }

  .site-header.menu-open .theme-toggle {
    position: absolute;
    top: calc(100% + 14px);
    right: 20px;
    z-index: 3;
    display: grid;
  }

  .theme-toggle::before {
    width: var(--theme-thumb-size);
    height: var(--theme-thumb-size);
  }

  .theme-option {
    height: var(--theme-thumb-size);
  }

  .theme-option svg {
    width: 16px;
    height: 16px;
  }

  .trust-list {
    flex-wrap: wrap;
    gap: 6px;
    max-width: 360px;
  }

  .trust-list li {
    padding: var(--hero-chip-pad-y) var(--hero-chip-pad-x);
    font-size: var(--hero-chip-size);
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: min-content;
    align-content: space-between;
    justify-content: stretch;
    gap: clamp(12px, 2svh, 22px);
    padding-top: clamp(24px, 4svh, 42px);
    padding-bottom: clamp(28px, 5svh, 52px);
  }

  .hero-shot {
    width: var(--media-frame-width);
  }

  .hero > * {
    justify-self: center;
  }

  h1 {
    font-size: var(--hero-heading-size);
    line-height: 1.14;
  }

  .hero-title-tail {
    display: block;
  }

  .about-copy h2 {
    max-width: 18ch;
  }

  .about-copy p {
    line-height: 1.58;
  }

  .button {
    width: 100%;
    min-height: 56px;
    padding-inline: 20px;
    font-size: var(--hero-cta-size);
  }

  .download-block .download-button {
    width: auto;
    min-width: 0;
    min-height: 44px;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 22px;
    font-size: var(--hero-cta-size);
  }

  .download-modal-panel {
    border-radius: 15px;
  }

  .term-modal-panel {
    border-radius: 15px;
  }

  .term-modal-panel h2 {
    margin-right: 44px;
  }

  .term-modal-actions,
  .term-modal-ok {
    width: 100%;
  }

  .download-modal-actions {
    flex-direction: column-reverse;
  }

  .download-modal-cancel,
  .download-modal-continue {
    width: 100%;
  }

  .screenshot-frame {
    padding: 0;
    border-radius: 12px;
  }

  .screenshot-frame img {
    border-radius: 12px;
  }

  .carousel-viewport,
  .carousel-slide {
    border-radius: 12px;
  }

  .carousel-arrow {
    width: 42px;
    height: 36px;
  }

  .carousel-controls {
    min-height: 36px;
    margin-top: 7px;
  }

  .benefit-row {
    padding: 12px 12px 22px;
    border-radius: 15px;
  }

  .benefit-row .screenshot-frame,
  .benefit-row .benefit-copy {
    width: 100%;
  }

  .benefit-copy {
    padding-inline: 4px;
  }

  .benefit-copy h2 {
    margin-bottom: 12px;
    line-height: 1.09;
  }

  .benefit-copy p {
    line-height: 1.52;
  }

  .faq-list summary {
    min-height: 60px;
    padding: 16px;
  }

  .faq-content p {
    padding-right: 16px;
    padding-bottom: 18px;
    padding-left: 16px;
    line-height: 1.56;
  }

  .footer-links {
    gap: 8px;
  }

  .footer-links a {
    white-space: nowrap;
    font-size: clamp(10px, 3vw, 13px);
  }

  .image-lightbox {
    padding: 8px;
  }

  .lightbox-content {
    width: 100%;
    height: calc(100svh - 16px);
    max-height: none;
    grid-template-rows: auto auto auto;
    align-content: center;
    gap: 8px;
    padding: max(8px, env(safe-area-inset-top)) 0 max(8px, env(safe-area-inset-bottom));
  }

  .lightbox-stage {
    width: min(100%, 1224px);
    height: auto;
    max-height: calc(100svh - 128px);
    aspect-ratio: var(--lightbox-aspect, 1224 / 768);
    justify-self: center;
  }

  .lightbox-image {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
  }

  .lightbox-close {
    position: relative;
    inset: auto;
    grid-row: 1;
    justify-self: end;
    align-self: end;
    transform: none;
  }

  .lightbox-arrow {
    width: 48px;
    height: 44px;
  }

  .lightbox-controls {
    grid-row: 3;
    width: min(100%, 1224px);
    min-height: 44px;
    padding-inline: 4px;
    justify-self: center;
  }
}

@media (max-width: 420px) {
  :root {
    --header-height: 72px;
    --page-gutter: 12px;
  }

  .site-header {
    padding-block: 12px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .theme-toggle {
    --theme-toggle-width: 54px;
    --theme-toggle-height: 32px;
    --theme-thumb-size: 24px;
    width: var(--theme-toggle-width);
    height: var(--theme-toggle-height);
  }

  .theme-toggle::before {
    width: var(--theme-thumb-size);
    height: var(--theme-thumb-size);
  }

  .theme-option {
    height: var(--theme-thumb-size);
  }

  .site-header nav {
    gap: 6px 14px;
  }

  .site-header nav a {
    font-size: 15px;
  }

  .trust-list {
    gap: 7px;
  }

  .trust-list li {
    padding: var(--hero-chip-pad-y) var(--hero-chip-pad-x);
    font-size: var(--hero-chip-size);
  }

  .download-modal,
  .term-modal {
    padding: 12px;
  }

  .download-modal-panel,
  .term-modal-panel {
    padding: 22px;
  }
}

@media (min-width: 1600px) {
  :root {
    --content-width: 1400px;
  }

  .benefit-row {
    gap: clamp(48px, 4vw, 76px);
  }
}

/* Older Safari and Chromium versions without small viewport units keep the
   same layout using the long-established viewport unit fallback. */
@supports not (height: 100svh) {
  :root {
    --hero-heading-size: clamp(28px, 3.4vw, 48px);
    --hero-chip-size: clamp(11px, 1.1vw, 14px);
    --hero-chip-pad-y: clamp(5px, .55vw, 8px);
    --hero-chip-pad-x: clamp(8px, .9vw, 13px);
    --hero-cta-size: clamp(20px, 2.4vw, 34px);
  }

  .hero {
    min-height: calc(100vh - var(--header-height));
  }

  @media (max-width: 1120px) {
    .hero {
      gap: clamp(12px, 2vh, 24px);
      padding-block: clamp(20px, 4vh, 48px);
    }
  }

  @media (min-width: 768px) and (max-width: 1120px) {
    :root {
      --hero-heading-size: clamp(28px, 4.2vw, 42px);
      --hero-chip-size: clamp(11px, 1.8vw, 15px);
      --hero-chip-pad-y: clamp(5px, .8vw, 8px);
      --hero-chip-pad-x: clamp(8px, 1.4vw, 12px);
      --hero-cta-size: clamp(20px, 2.8vw, 30px);
    }
  }

  @media (min-width: 1121px) and (max-height: 800px) {
    .hero {
      gap: clamp(14px, 2.4vh, 24px);
      padding-block: clamp(16px, 3vh, 32px);
    }

    .hero-shot {
      width: min(560px, 56vw, 54vh);
    }
  }

  @media (min-width: 768px) and (max-width: 1120px) and (max-height: 800px) {
    .hero {
      gap: clamp(8px, 1.4vh, 14px);
      padding-block: clamp(12px, 2vh, 20px);
    }

    .hero-shot {
      width: min(500px, 58vh);
    }
  }

  @media (max-width: 767px) {
    :root {
      --hero-heading-size: clamp(24px, 7.4vw, 36px);
      --hero-chip-size: clamp(10px, 3vw, 12px);
      --hero-chip-pad-y: clamp(4px, 1.2vw, 6px);
      --hero-chip-pad-x: clamp(7px, 2vw, 10px);
      --hero-cta-size: clamp(17px, 5vw, 22px);
      --media-frame-width: min(calc(100% - 24px), clamp(280px, 60vh, 620px));
    }

    .hero {
      min-height: calc(100vh - var(--header-height));
      gap: clamp(12px, 2vh, 22px);
      padding-top: clamp(24px, 4vh, 42px);
      padding-bottom: clamp(28px, 5vh, 52px);
    }

    .lightbox-image {
      max-height: 100%;
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
