:root {
  --bg: #090a10;
  --bg-muted: #11121a;
  --bg-elevated: #141625;
  --text: #f4f6fc;
  --text-muted: rgba(209, 215, 245, 0.72);
  --accent: #7c5cff;
  --accent-strong: #36d1ff;
  --green: #27d6a1;
  --amber: #ffcc66;
  --red: #ff6b6b;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --max-width: 1040px;
  --font-sans: "Inter", "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  color-scheme: dark;
  font-family: var(--font-sans);
  line-height: 1.5;
}

body {
  min-width: 320px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 4.8rem;
  line-height: 0.98;
}

h2 {
  margin-bottom: 14px;
  font-size: 2rem;
  line-height: 1.12;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  line-height: 1.25;
}

p,
li,
small {
  color: var(--text-muted);
}

code {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-strong);
  padding: 0.1rem 0.36rem;
  font-size: 0.92em;
  overflow-wrap: anywhere;
}

.site-header {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 28px max(24px, calc((100% - var(--max-width)) / 2)) 12px;
  background:
    linear-gradient(135deg, rgba(42, 32, 89, 0.96), rgba(14, 62, 86, 0.96)),
    var(--bg);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 800;
}

.brand img {
  width: 34px;
  height: 34px;
  display: block;
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.brand span {
  text-transform: uppercase;
  font-size: 0.95rem;
}

.site-header nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-header nav a,
.button,
.store-button,
.primary-link,
.copy-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0 20px;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-header nav a {
  min-height: 40px;
  padding: 0 16px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-header nav a:hover,
.button:hover,
.store-button:hover,
.primary-link:hover,
.copy-button:hover,
.landing-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(54, 209, 255, 0.55);
  box-shadow: 0 18px 36px rgba(18, 22, 45, 0.35);
}

.store-row,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0 0;
}

.store-button,
.primary-link {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 16px 40px rgba(90, 78, 255, 0.35);
}

.store-button.secondary,
.copy-button {
  border-color: rgba(255, 255, 255, 0.16);
  background: transparent;
  box-shadow: none;
}

main {
  width: 100%;
  overflow: hidden;
}

.hero {
  position: relative;
  margin-top: 0;
  padding: 66px 5vw 118px;
  background:
    linear-gradient(135deg, rgba(32, 24, 74, 0.96) 0%, rgba(9, 16, 31, 0.98) 52%, rgba(7, 53, 64, 0.96) 100%),
    var(--bg);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(90deg, rgba(54, 209, 255, 0.08), rgba(124, 92, 255, 0.08), rgba(39, 214, 161, 0.05));
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max-width), 100%);
  max-width: var(--max-width);
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  align-items: center;
  margin: 0 auto;
}

.hero.compact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 50px;
  align-items: center;
  padding: 66px max(24px, calc((100% - var(--max-width)) / 2)) 76px;
}

.hero.compact > * {
  position: relative;
  z-index: 1;
}

.hero-copy {
  min-width: 0;
}

.eyebrow,
.label {
  display: block;
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-subtitle,
.lead {
  max-width: 580px;
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 14px;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-visual {
  min-width: 0;
  display: flex;
  justify-content: center;
}

.app-hero {
  padding-top: 54px;
  padding-bottom: 88px;
}

.app-hero-content {
  width: min(1180px, 100%);
  max-width: 1180px;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 60px;
}

.app-hero .store-row {
  margin-top: 30px;
}

.app-proof {
  max-width: 620px;
}

.app-visual {
  position: relative;
}

.store-screenshot-stage {
  position: relative;
  width: min(590px, 100%);
  min-height: 620px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.store-screenshot-stage::before {
  content: "";
  position: absolute;
  inset: 54px 36px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
  transform: rotate(-2deg);
}

.hero-shot {
  display: block;
  height: auto;
  border-radius: 28px;
  filter: drop-shadow(0 30px 42px rgba(0, 0, 0, 0.46));
}

.hero-shot-main {
  position: relative;
  z-index: 3;
  width: 280px;
}

.hero-shot-side {
  position: absolute;
  z-index: 2;
  width: 210px;
  opacity: 0.9;
}

.hero-shot-left {
  left: 0;
  top: 64px;
  transform: rotate(-7deg);
}

.hero-shot-right {
  right: 0;
  bottom: 34px;
  transform: rotate(6deg);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.75fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 18px;
}

.section-intro p:last-child {
  margin-bottom: 12px;
}

.screenshot-showcase {
  min-width: 0;
}

.app-screens {
  grid-auto-columns: 230px;
  gap: 18px;
  padding: 6px 4px 16px;
}

.app-screens img {
  width: 230px;
  height: auto;
  border-radius: 24px;
  background: #20242a;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.42);
}

.app-feature-grid .card,
.app-workflow {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    var(--bg-elevated);
}

.hero-media {
  position: relative;
  width: min(960px, 95vw);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(12, 14, 24, 0.65);
  box-shadow: 0 28px 80px rgba(16, 13, 36, 0.55);
  overflow: hidden;
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-media figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px 22px;
  background: linear-gradient(180deg, rgba(8, 10, 20, 0) 0%, rgba(8, 10, 20, 0.85) 100%);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
}

.share-preview {
  width: min(520px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(14, 16, 28, 0.82);
  box-shadow: 0 28px 80px rgba(16, 13, 36, 0.55);
  overflow: hidden;
}

.browser-bar {
  display: grid;
  grid-template-columns: 10px 10px 10px 1fr;
  gap: 8px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  background: rgba(6, 8, 16, 0.62);
  padding: 14px 18px;
}

.browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
}

.browser-bar span:first-child {
  background: #ff6b6b;
}

.browser-bar span:nth-child(2) {
  background: #ffcc66;
}

.browser-bar span:nth-child(3) {
  background: #27d6a1;
}

.browser-bar strong {
  min-width: 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.share-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 28px 10px;
}

.share-preview-head small {
  color: var(--accent-strong);
  font-weight: 800;
  text-transform: uppercase;
}

.share-preview-head strong,
.timeline-card-top strong {
  border: 1px solid rgba(54, 209, 255, 0.36);
  border-radius: 999px;
  background: rgba(54, 209, 255, 0.1);
  color: var(--accent-strong);
  padding: 5px 11px;
  font-size: 0.82rem;
}

.share-preview h2 {
  padding: 0 28px;
  margin-bottom: 8px;
  font-size: 2.45rem;
}

.preview-muted {
  padding: 0 28px;
  margin-bottom: 20px;
}

.public-preview-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.public-preview-list li {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 18px;
  border-top: 1px solid var(--border);
  padding: 16px 28px;
}

.public-preview-list time {
  color: var(--accent-strong);
  font-weight: 800;
}

.public-preview-list span {
  color: var(--text);
  font-weight: 800;
}

.page-body,
.share-hero,
.status-layout,
.timeline-section,
.download-cta,
.narrow,
.site-footer {
  width: min(var(--max-width), calc(100% - 48px));
  max-width: var(--max-width);
  margin-right: auto;
  margin-left: auto;
}

.page-body {
  display: grid;
  gap: 28px;
  margin-top: 80px;
  margin-bottom: 96px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  align-items: stretch;
}

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

.card,
.phone-preview,
.case-preview,
.share-card,
.current-status,
.case-facts,
.empty-state,
.public-timeline,
.download-cta,
.landing-links a,
.content-band {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-elevated);
  box-shadow: 0 22px 60px rgba(8, 10, 24, 0.45);
}

.card,
.phone-preview,
.case-preview,
.share-card,
.current-status,
.case-facts,
.empty-state,
.content-band {
  padding: 28px;
}

.card p,
.card li,
.content-band p,
.split-section p,
.download-cta p,
.case-preview span,
.case-facts dt,
.site-footer p,
.share-card small,
.phone-top,
.mini-timeline small,
.preview-row span {
  color: var(--text-muted);
}

.screens-card {
  overflow: hidden;
}

.card-header {
  margin-bottom: 16px;
}

.muted {
  color: var(--text-muted);
}

.muted.small {
  font-size: 0.88rem;
}

.screens-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.screens-scroller img {
  display: block;
  width: auto;
  height: 420px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 40px rgba(8, 10, 24, 0.4);
}

.screens-scroller::-webkit-scrollbar {
  height: 8px;
}

.screens-scroller::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.screens-scroller::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.phone-preview {
  padding: 20px;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.9rem;
}

.phone-top strong,
.form-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(54, 209, 255, 0.36);
  border-radius: 999px;
  background: rgba(54, 209, 255, 0.1);
  color: var(--accent-strong);
  padding: 5px 11px;
  font-size: 0.82rem;
}

.status-panel {
  margin: 18px 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  padding: 18px;
}

.status-panel small {
  color: var(--text-muted);
  font-weight: 800;
}

.status-panel h2 {
  margin: 8px 0;
  font-size: 1.28rem;
}

.mini-timeline,
.public-timeline,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-timeline li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}

.mini-timeline li span,
.check-list li::before {
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--green);
  flex: 0 0 auto;
}

.mini-timeline strong,
.mini-timeline small {
  display: block;
}

.content-band,
.split-section,
.download-cta,
.status-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
}

.content-band {
  margin: 0;
}

.tracker-hero {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  padding-right: max(24px, calc((100% - 1180px) / 2));
  padding-left: max(24px, calc((100% - 1180px) / 2));
}

.tracker-phone-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--bg-elevated);
  box-shadow: 0 28px 80px rgba(8, 10, 24, 0.52);
  padding: 24px;
  overflow: hidden;
}

.tracker-phone-card img {
  width: 178px;
  height: auto;
  display: block;
  border-radius: 22px;
  background: #20242a;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.45);
}

.tracker-phone-card figcaption {
  min-width: 0;
  display: grid;
  gap: 12px;
}

.tracker-phone-card h2,
.tracker-phone-card p {
  margin-bottom: 0;
}

.tracker-preview-facts {
  display: grid;
  margin: 6px 0 0;
}

.tracker-preview-facts div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding: 12px 0;
}

.tracker-preview-facts dt,
.tracker-preview-facts dd {
  margin: 0;
}

.tracker-preview-facts dt {
  color: var(--text-muted);
}

.tracker-preview-facts dd {
  color: var(--text);
  font-weight: 800;
  text-align: right;
}

.tracker-page-body {
  width: min(1180px, calc(100% - 48px));
  max-width: 1180px;
  margin-top: 64px;
}

.tracker-waiting,
.tracker-feature-grid .card,
.tracker-screens-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    var(--bg-elevated);
}

.tracker-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tracker-screens-card {
  overflow: hidden;
}

.tracker-mini-screens {
  grid-auto-columns: 190px;
  gap: 16px;
  padding-top: 4px;
}

.tracker-mini-screens img {
  width: 190px;
  height: auto;
  border-radius: 20px;
}

.tracker-share-download {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.share-card {
  display: grid;
  align-content: center;
}

.share-domain {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-strong);
  padding: 7px 12px;
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.landing-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.landing-links a {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px;
  color: var(--text);
  font-weight: 800;
}

.case-preview {
  display: grid;
  gap: 16px;
}

.example-copy {
  display: grid;
  align-content: center;
  justify-items: start;
}

.example-copy .primary-link {
  margin-top: 12px;
}

.timeline-card {
  display: grid;
  gap: 18px;
}

.timeline-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mini-facts {
  margin: 0;
}

.mini-facts div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--border);
  padding: 14px 0;
}

.mini-facts dt,
.mini-facts dd {
  margin: 0;
}

.mini-facts dt {
  color: var(--text-muted);
}

.mini-facts dd {
  color: var(--text);
  font-weight: 800;
  text-align: right;
  overflow-wrap: anywhere;
}

.privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: center;
}

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

.privacy-grid span {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 10px 14px;
  font-weight: 800;
}

.step-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
}

.download-card {
  display: grid;
  align-content: center;
}

.preview-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--border);
  padding: 14px 0 0;
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  margin-top: 0;
}

.share-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 62px 0 28px;
}

.current-status h2 {
  max-width: 760px;
  font-size: 2.35rem;
}

.case-facts dl {
  margin: 0;
}

.case-facts div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.case-facts div:last-child {
  border-bottom: 0;
}

.case-facts dt,
.case-facts dd {
  margin: 0;
}

.case-facts dd {
  max-width: 58%;
  color: var(--text);
  text-align: right;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.timeline-section {
  display: block;
  padding: 28px 0;
}

.section-heading {
  margin-bottom: 16px;
}

.public-timeline {
  overflow: hidden;
}

.public-timeline li {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 20px;
  padding: 18px 22px;
  border-top: 1px solid var(--border);
}

.public-timeline li:first-child {
  border-top: 0;
}

.public-timeline time {
  color: var(--accent-strong);
  font-weight: 800;
}

.download-cta {
  margin-top: 28px;
  margin-bottom: 80px;
}

.empty-state {
  margin-top: 36px;
}

.empty-state.inline {
  margin-top: 0;
  box-shadow: none;
}

.narrow {
  padding: 54px 0 90px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--border);
  padding: 36px 0 48px;
}

.site-footer strong {
  color: var(--text);
}

.site-footer p {
  max-width: 640px;
  margin-bottom: 0;
}

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

.footer-links a {
  color: var(--text-muted);
  font-weight: 800;
}

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

@media (max-width: 880px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
    padding-left: 20px;
  }

  .site-header nav {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .site-header nav a,
  .chip {
    width: 100%;
  }

  .hero-meta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .chip {
    justify-content: center;
  }

  .hero {
    padding-top: 72px;
    padding-bottom: 82px;
  }

  .app-hero {
    padding-top: 58px;
  }

  .app-hero-content {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
  }

  .store-screenshot-stage {
    min-height: 560px;
    margin: 0 auto;
  }

  .hero-shot-main {
    width: 250px;
  }

  .hero-shot-side {
    width: 190px;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero.compact {
    padding-top: 72px;
  }

  .tracker-hero {
    grid-template-columns: minmax(0, 1fr);
    padding-right: 20px;
    padding-left: 20px;
  }

  .tracker-phone-card {
    max-width: 720px;
  }

  .tracker-page-body {
    width: calc(100% - 40px);
  }

  .tracker-feature-grid,
  .tracker-share-download {
    grid-template-columns: 1fr;
  }

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

  .purpose-grid,
  .privacy-panel {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 3.7rem;
  }
}

@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
  }

  .page-body,
  .share-hero,
  .status-layout,
  .timeline-section,
  .download-cta,
  .narrow,
  .site-footer {
    width: calc(100% - 32px);
  }

  .site-header nav a {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .hero,
  .hero.compact {
    margin-top: 0;
    padding: 72px 16px;
  }

  .tracker-hero {
    padding-right: 16px;
    padding-left: 16px;
  }

  .tracker-phone-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .tracker-phone-card img {
    width: min(188px, 60vw);
    margin: 0 auto;
  }

  .tracker-preview-facts div {
    flex-direction: column;
    gap: 4px;
  }

  .tracker-preview-facts dd {
    text-align: left;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .app-hero-content {
    gap: 26px;
  }

  .hero-copy,
  .hero-visual,
  .share-preview {
    min-width: 0;
    max-width: 100%;
  }

  .store-screenshot-stage {
    width: 100%;
    min-height: 470px;
    overflow: hidden;
  }

  .store-screenshot-stage::before {
    inset: 42px 18px 24px;
    border-radius: 26px;
  }

  .hero-shot {
    border-radius: 22px;
  }

  .hero-shot-main {
    width: min(220px, 64vw);
  }

  .hero-shot-side {
    width: min(156px, 44vw);
  }

  .hero-shot-left {
    left: 0;
    top: 74px;
  }

  .hero-shot-right {
    right: 0;
    bottom: 30px;
  }

  h1 {
    font-size: 2.05rem;
    line-height: 1.04;
  }

  h2,
  .share-preview h2,
  .current-status h2 {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: 1rem;
  }

  .store-button,
  .primary-link,
  .copy-button {
    width: 100%;
  }

  .hero-media figcaption {
    position: static;
    background: rgba(8, 10, 20, 0.86);
  }

  .page-body {
    margin-top: 42px;
    margin-bottom: 72px;
  }

  .tracker-page-body {
    width: calc(100% - 32px);
  }

  .screens-scroller {
    grid-auto-columns: minmax(180px, 1fr);
  }

  .screens-scroller img {
    height: 300px;
  }

  .app-screens {
    grid-auto-columns: 180px;
  }

  .app-screens img {
    width: 180px;
    height: auto;
  }

  .tracker-mini-screens {
    grid-auto-columns: 142px;
  }

  .tracker-mini-screens img {
    width: 142px;
    height: auto;
  }

  .landing-links,
  .share-hero {
    grid-template-columns: 1fr;
  }

  .public-preview-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

  .preview-row,
  .case-facts div,
  .site-footer {
    flex-direction: column;
  }

  .case-facts dd {
    max-width: 100%;
    text-align: left;
  }

  .public-timeline li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-right: 12px;
    padding-left: 12px;
  }

  .brand span {
    font-size: 0.88rem;
  }

  h1 {
    font-size: 1.95rem;
  }

  .store-screenshot-stage {
    min-height: 430px;
  }

  .hero-shot-main {
    width: min(204px, 66vw);
  }

  .hero-shot-side {
    width: min(142px, 45vw);
  }

  .card,
  .phone-preview,
  .case-preview,
  .share-card,
  .current-status,
  .case-facts,
  .empty-state,
  .content-band,
  .download-cta {
    padding: 22px;
  }

  .screens-scroller img {
    height: 260px;
  }

  .app-screens img {
    width: 164px;
    height: auto;
  }
}
