:root {
  color-scheme: dark;
  --bg: #090b0e;
  --bg-soft: #0e1116;
  --panel: rgba(17, 21, 27, 0.86);
  --panel-solid: #12161d;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.15);
  --text: #f5f7fa;
  --muted: #99a2ad;
  --muted-2: #6d7681;
  --accent: #d7ff64;
  --accent-soft: rgba(215, 255, 100, 0.12);
  --blue: #92b8ff;
  --radius: 24px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 50% -12%, rgba(76, 98, 111, 0.19), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-shell {
  width: min(1500px, 100%);
  margin: 0 auto;
  overflow: hidden;
}

.topbar {
  width: min(1280px, calc(100% - 48px));
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 680;
  letter-spacing: -0.02em;
}

.brand-mark,
.mini-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(215, 255, 100, 0.5);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(215, 255, 100, 0.18), rgba(215, 255, 100, 0.02));
  box-shadow: inset 0 0 18px rgba(215, 255, 100, 0.08);
}

.brand-mark span,
.mini-mark::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 2px solid var(--accent);
  border-top-color: transparent;
  border-radius: 50%;
  transform: rotate(-35deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #b4bbc4;
  font-size: 14px;
}

.nav a {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.nav-cta {
  padding: 10px 15px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.hero {
  width: min(1280px, calc(100% - 48px));
  min-height: 720px;
  margin: 0 auto;
  padding: 92px 0 86px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 64px;
}

.eyebrow,
.section-kicker,
.micro-label {
  color: #c4ccd5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(215, 255, 100, 0.08), 0 0 18px rgba(215, 255, 100, 0.55);
}

.hero h1 {
  margin: 24px 0 22px;
  font-size: clamp(56px, 6.2vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.068em;
  font-weight: 720;
}

.hero h1 span {
  color: #aeb5bf;
}

.hero-lead {
  max-width: 600px;
  margin: 0;
  color: #aab2bc;
  font-size: 19px;
  line-height: 1.62;
  letter-spacing: -0.01em;
}

.hero-actions,
.beta-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.button {
  min-height: 48px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 720;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-primary {
  color: #151a0c;
  background: var(--accent);
  box-shadow: 0 8px 30px rgba(215, 255, 100, 0.12);
}

.button-primary:hover {
  background: #e0ff83;
}

.button-ghost {
  color: #dfe4ea;
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
}

.trust-row {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: var(--muted-2);
  font-size: 12px;
}

.trust-row span::before {
  content: "✓";
  margin-right: 7px;
  color: #98a389;
}

.app-stage {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.18;
  pointer-events: none;
}

.orb-a {
  width: 270px;
  height: 270px;
  background: #b7ff45;
  right: 2%;
  top: 8%;
}

.orb-b {
  width: 220px;
  height: 220px;
  background: #356dff;
  left: 3%;
  bottom: 6%;
}

.app-window {
  position: relative;
  width: min(720px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(12, 15, 20, 0.92);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: perspective(1300px) rotateY(-4deg) rotateX(1.8deg);
  backdrop-filter: blur(20px);
}

.window-bar {
  height: 56px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.window-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.mini-mark {
  width: 21px;
  height: 21px;
  border-radius: 6px;
}

.mini-mark::after {
  width: 6px;
  height: 6px;
}

.window-status {
  color: #afb8c1;
  font-size: 11px;
}

.window-status span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.window-body {
  min-height: 430px;
  display: grid;
  grid-template-columns: 175px 1fr;
}

.sidebar {
  padding: 18px 12px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
}

.side-item {
  padding: 9px 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #727c87;
  border-radius: 8px;
  font-size: 11px;
}

.side-item i {
  width: 13px;
  height: 13px;
  border: 1px solid currentColor;
  border-radius: 4px;
  opacity: 0.65;
}

.side-item.active {
  color: #eef2f6;
  background: rgba(255, 255, 255, 0.055);
}

.side-spacer {
  flex: 1;
}

.storage-card {
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.018);
}

.storage-card span,
.storage-card small {
  display: block;
  color: #727c87;
  font-size: 9px;
}

.storage-card strong {
  display: block;
  margin-top: 6px;
  font-size: 14px;
}

.meter,
.reserve-meter {
  height: 4px;
  margin: 9px 0;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.meter div {
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.dashboard {
  padding: 28px;
}

.dashboard-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.dashboard-head small {
  color: #6d7681;
  font-size: 9px;
}

.dashboard-head h3 {
  margin: 5px 0 0;
  font-size: 19px;
  letter-spacing: -0.03em;
}

.dashboard-head button {
  padding: 7px 12px;
  color: #8b949e;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
  font-size: 10px;
}

.stats-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.stat {
  min-height: 94px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
}

.stat span,
.stat em {
  display: block;
  color: #69737e;
  font-size: 8px;
  font-style: normal;
}

.stat strong {
  display: block;
  margin: 7px 0 6px;
  font-size: 17px;
  letter-spacing: -0.03em;
}

.stat em {
  color: #869278;
}

.activity-card {
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.014);
}

.card-head,
.file-row {
  padding: 12px 14px;
  display: grid;
  align-items: center;
}

.card-head {
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
}

.card-head span {
  color: #6f7984;
}

.file-row {
  grid-template-columns: 27px 1fr auto;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.file-row:last-child {
  border-bottom: 0;
}

.file-icon {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: #bec7d1;
  border-radius: 6px;
  background: rgba(146, 184, 255, 0.11);
  font-size: 9px;
}

.file-row strong,
.file-row small {
  display: block;
}

.file-row strong {
  font-size: 9px;
  font-weight: 620;
}

.file-row small,
.file-row time {
  margin-top: 2px;
  color: #65707b;
  font-size: 8px;
}

.muted-row {
  opacity: 0.7;
}

.principles,
.feature-section,
.privacy-section,
.safety-section,
.beta-section,
.faq-section,
.footer {
  width: min(1280px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.principles {
  padding: 52px 0 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.principles article {
  padding: 34px 34px 38px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.01));
}

.principles article:first-child {
  border-radius: 18px 0 0 18px;
}

.principles article:last-child {
  border-radius: 0 18px 18px 0;
}

.num,
.step-number {
  color: #717b85;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.principles h2 {
  margin: 54px 0 13px;
  font-size: 23px;
  letter-spacing: -0.035em;
}

.principles p,
.step-card p,
.privacy-copy p,
.safety-card p,
.beta-inner p,
.faq-grid p,
.legal-content p,
.legal-content li {
  color: #8d97a2;
  line-height: 1.7;
}

.principles p {
  margin: 0;
  font-size: 14px;
}

.feature-section {
  padding: 110px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  align-items: end;
}

.section-heading h2,
.privacy-copy h2,
.beta-inner h2,
.legal-hero h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
  letter-spacing: -0.055em;
}

.section-heading p {
  margin: 0 0 4px;
  color: #929ca7;
  font-size: 16px;
  line-height: 1.65;
}

.steps {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.step-card {
  padding: 18px 18px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.018);
}

.step-visual {
  position: relative;
  height: 210px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 13px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #0d1116;
  background-size: 24px 24px;
}

.folder-shape {
  position: absolute;
  width: 112px;
  height: 82px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(215, 255, 100, 0.38);
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(215, 255, 100, 0.14), rgba(215, 255, 100, 0.025));
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.28);
}

.folder-shape::before {
  content: "";
  position: absolute;
  left: 12px;
  top: -10px;
  width: 43px;
  height: 17px;
  border: 1px solid rgba(215, 255, 100, 0.38);
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  background: #151b16;
}

.folder-shape span {
  position: absolute;
  width: 27px;
  height: 27px;
  right: -10px;
  bottom: -10px;
  border: 5px solid var(--accent);
  border-top-color: transparent;
  border-radius: 50%;
  transform: rotate(-35deg);
}

.folder-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(215, 255, 100, 0.38), transparent);
}

.folder-line.a { width: 80%; top: 38%; left: 10%; }
.folder-line.b { width: 66%; top: 68%; left: 17%; }

.timeline-line {
  position: absolute;
  left: 15%;
  right: 15%;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.tick {
  position: absolute;
  top: calc(50% - 6px);
  width: 13px;
  height: 13px;
  border: 2px solid #0d1116;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 1px rgba(215, 255, 100, 0.25), 0 0 25px rgba(215, 255, 100, 0.16);
}

.tick::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 15px;
  width: 1px;
  height: 35px;
  background: linear-gradient(rgba(215, 255, 100, 0.35), transparent);
}

.t1 { left: 18%; }
.t2 { left: 38%; }
.t3 { left: 60%; }
.t4 { left: 79%; }

.restore-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 105px;
  height: 105px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border: 1px solid rgba(146, 184, 255, 0.34);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(146, 184, 255, 0.12), transparent 65%);
  box-shadow: 0 0 0 22px rgba(146, 184, 255, 0.025), 0 0 0 44px rgba(146, 184, 255, 0.015);
}

.restore-ring span {
  color: #b8ccff;
  font-size: 45px;
}

.step-card h3 {
  margin: 14px 0 10px;
  font-size: 22px;
  letter-spacing: -0.035em;
}

.step-card p {
  margin: 0;
  font-size: 14px;
}

.privacy-section {
  padding: 110px 0;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 100px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.privacy-copy h2 {
  margin-top: 20px;
}

.privacy-copy p {
  max-width: 600px;
  margin: 24px 0 0;
  font-size: 16px;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  margin-top: 24px;
  color: #dce3ea;
  font-size: 14px;
  font-weight: 650;
}

.text-link span {
  color: var(--accent);
}

.privacy-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.018);
}

.privacy-row {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.privacy-row:last-child {
  border-bottom: 0;
}

.privacy-row span {
  color: #86909b;
}

.privacy-row strong {
  color: #cce7a2;
  text-align: right;
  font-size: 12px;
}

.privacy-row.caution strong {
  color: #e3c294;
}

.safety-section {
  padding: 30px 0 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.safety-card {
  min-height: 390px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012));
}

.safety-card h3 {
  max-width: 480px;
  margin: 90px 0 13px;
  font-size: 31px;
  letter-spacing: -0.045em;
}

.safety-card p {
  max-width: 520px;
  margin: 0;
  font-size: 14px;
}

.reserve-meter {
  height: 7px;
  margin: 28px 0 10px;
}

.reserve-meter span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #a0ca43);
}

.safety-card small {
  color: #65707b;
  font-size: 10px;
}

.root-status {
  margin-top: 12px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.root-status:first-of-type {
  margin-top: 26px;
}

.root-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.root-status .good { background: var(--accent); }
.root-status .warn { background: #d4a759; }
.root-status b { font-size: 12px; }
.root-status em { color: #717b85; font-size: 10px; font-style: normal; }

.beta-section {
  position: relative;
  padding: 1px;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(120deg, rgba(215, 255, 100, 0.28), rgba(255, 255, 255, 0.08), rgba(146, 184, 255, 0.22));
}

.beta-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -60px;
  top: -190px;
  border-radius: 50%;
  background: rgba(215, 255, 100, 0.1);
  filter: blur(80px);
}

.beta-inner {
  position: relative;
  padding: 72px;
  border-radius: 27px;
  background: #0c1014;
}

.beta-inner h2 {
  margin-top: 20px;
}

.beta-inner > p {
  max-width: 760px;
  margin: 24px 0 0;
  font-size: 16px;
}

.beta-note {
  margin-top: 36px;
  padding: 16px 18px;
  border: 1px solid rgba(220, 173, 104, 0.2);
  border-radius: 12px;
  color: #9e8f7a;
  background: rgba(220, 173, 104, 0.045);
  font-size: 12px;
  line-height: 1.6;
}

.beta-note strong {
  color: #d7c7ae;
}

.faq-section {
  padding: 120px 0;
}

.faq-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.faq-grid details {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.faq-grid details:nth-child(odd) {
  padding-right: 34px;
}

.faq-grid details:nth-child(even) {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.faq-grid summary {
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 650;
}

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

.faq-grid summary::after {
  content: "+";
  float: right;
  color: #69737e;
}

.faq-grid details[open] summary::after {
  content: "−";
}

.faq-grid p {
  margin: 14px 28px 0 0;
  font-size: 13px;
}

.footer {
  padding: 42px 0 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  border-top: 1px solid var(--line);
}

.footer > div:first-child p {
  margin: 13px 0 0;
  color: #65707b;
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 22px;
  color: #89939e;
  font-size: 12px;
}

.footer-links a:hover {
  color: #d9dfe6;
}

.footer-meta {
  grid-column: 1 / -1;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: #545e68;
  border-top: 1px solid rgba(255, 255, 255, 0.045);
  font-size: 10px;
}

.legal-page {
  min-height: 100vh;
}

.legal-hero,
.legal-content,
.legal-footer {
  width: min(900px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.legal-hero {
  padding: 92px 0 48px;
}

.legal-hero .section-kicker {
  margin-bottom: 18px;
}

.legal-hero h1 {
  font-size: clamp(48px, 7vw, 74px);
}

.legal-hero p {
  max-width: 720px;
  margin: 20px 0 0;
  color: #909aa5;
  line-height: 1.65;
}

.legal-content {
  padding: 14px 0 100px;
}

.legal-content section {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin: 0 0 14px;
  font-size: 25px;
  letter-spacing: -0.035em;
}

.legal-content h3 {
  margin: 24px 0 8px;
  font-size: 16px;
}

.legal-content p,
.legal-content li {
  font-size: 14px;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content strong {
  color: #dce2e8;
}

.legal-note {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.022);
  color: #89939e;
  font-size: 12px;
  line-height: 1.6;
}

.legal-footer {
  padding: 28px 0 44px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #68727c;
  font-size: 11px;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 72px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .app-stage {
    min-height: auto;
  }

  .app-window {
    transform: none;
  }

  .section-heading,
  .privacy-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .privacy-section {
    gap: 50px;
  }
}

@media (max-width: 820px) {
  .topbar,
  .hero,
  .principles,
  .feature-section,
  .privacy-section,
  .safety-section,
  .beta-section,
  .faq-section,
  .footer {
    width: min(100% - 32px, 1280px);
  }

  .nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 58px 0 72px;
  }

  .hero h1 {
    font-size: clamp(54px, 14vw, 82px);
  }

  .window-body {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

  .principles,
  .steps,
  .safety-section {
    grid-template-columns: 1fr;
  }

  .principles {
    gap: 10px;
  }

  .principles article,
  .principles article:first-child,
  .principles article:last-child {
    border-radius: 16px;
  }

  .principles h2 {
    margin-top: 32px;
  }

  .beta-inner {
    padding: 46px 28px;
  }

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

  .faq-grid details:nth-child(odd),
  .faq-grid details:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-left: 0;
  }

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

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .topbar {
    height: 72px;
  }

  .hero {
    padding-top: 46px;
  }

  .hero h1 {
    margin-top: 20px;
    font-size: 50px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .dashboard {
    padding: 18px;
  }

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

  .app-window {
    border-radius: 16px;
  }

  .section-heading h2,
  .privacy-copy h2,
  .beta-inner h2,
  .legal-hero h1 {
    font-size: 42px;
  }

  .feature-section,
  .privacy-section,
  .faq-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .safety-card {
    min-height: 350px;
    padding: 26px;
  }

  .safety-card h3 {
    margin-top: 70px;
  }

  .privacy-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .privacy-row strong {
    text-align: left;
  }

  .footer-meta,
  .legal-footer {
    flex-direction: column;
  }
}
