:root {
  color-scheme: light;
  --ink: #17151d;
  --muted: #68646f;
  --paper: #fbfaf7;
  --surface: rgba(255, 255, 255, 0.76);
  --line: rgba(23, 21, 29, 0.12);
  --violet: #8c63f6;
  --violet-dark: #6339cb;
  --lilac: #dac6ff;
  --peach: #ffd9b6;
  --green: #bdf0c7;
  --red: #ff4d5e;
  --shadow: 0 26px 80px rgba(46, 27, 83, 0.16);
  --radius-lg: 36px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --page: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(218, 198, 255, 0.7), transparent 26rem),
    radial-gradient(circle at 88% 18%, rgba(255, 217, 182, 0.62), transparent 28rem),
    var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

figure {
  margin: 0;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 20;
  width: var(--page);
  margin: 20px auto 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  background: rgba(251, 250, 247, 0.72);
  box-shadow: 0 12px 40px rgba(32, 25, 48, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: white;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  color: #4e4956;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--violet-dark);
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-cta,
.button-primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 8px 22px rgba(23, 21, 29, 0.16);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.button-android {
  border-color: rgba(47, 166, 84, 0.25);
  background: rgba(189, 240, 199, 0.72);
  color: #155b2f;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button-primary:hover,
.nav-cta:hover {
  box-shadow: 0 12px 28px rgba(23, 21, 29, 0.24);
}

.hero {
  position: relative;
  display: grid;
  width: var(--page);
  min-height: 760px;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 54px;
  margin: 0 auto;
  padding: 90px 0 80px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 22px;
  color: var(--violet-dark);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 0 6px rgba(140, 99, 246, 0.12);
  content: "";
}

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

.hero h1 {
  max-width: 700px;
  margin-bottom: 26px;
  font-size: clamp(52px, 6.7vw, 88px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.hero h1 span {
  display: block;
  background: linear-gradient(110deg, var(--violet-dark), #9d5fe8 48%, #de7d5b);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 30px;
  color: #5a5660;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-row span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2bc65a;
  content: "";
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.hero-orbit {
  position: absolute;
  inset: 7% -5% 4% 2%;
  border: 1px solid rgba(140, 99, 246, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.74), rgba(218, 198, 255, 0.2) 48%, transparent 70%);
}

.device-shot {
  position: absolute;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.9);
  border-radius: 38px;
  background: white;
  box-shadow: var(--shadow);
}

.device-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.device-shot-main {
  z-index: 2;
  top: 12px;
  right: 34px;
  width: 330px;
  aspect-ratio: 1242 / 2688;
  transform: rotate(2.5deg);
}

.device-shot-side {
  z-index: 1;
  bottom: 12px;
  left: 2px;
  width: 245px;
  aspect-ratio: 1242 / 2688;
  transform: rotate(-6deg);
  filter: saturate(0.9);
}

.floating-note {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.87);
  box-shadow: 0 14px 34px rgba(35, 25, 57, 0.14);
  backdrop-filter: blur(16px);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 12px;
  font-weight: 750;
}

.floating-note::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #24c95a;
  box-shadow: 0 0 0 5px rgba(36, 201, 90, 0.12);
  content: "";
}

.note-online {
  top: 85px;
  left: -18px;
}

.note-private {
  right: -5px;
  bottom: 100px;
}

.note-private::before {
  background: var(--violet);
  box-shadow: 0 0 0 5px rgba(140, 99, 246, 0.12);
}

.section {
  padding: 110px 0;
}

.section-shell {
  width: var(--page);
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 50px;
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(39px, 5vw, 64px);
  font-weight: 880;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.section-heading p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 17px;
}

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

.feature-card {
  min-height: 260px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 16px 50px rgba(42, 31, 60, 0.055);
}

.feature-card:nth-child(1) {
  background: linear-gradient(145deg, rgba(237, 226, 255, 0.92), rgba(255, 255, 255, 0.72));
}

.feature-card:nth-child(4) {
  background: linear-gradient(145deg, rgba(255, 231, 208, 0.9), rgba(255, 255, 255, 0.72));
}

.feature-index {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 46px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.8);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 12px;
  font-weight: 800;
}

.feature-card h3 {
  margin-bottom: 9px;
  font-size: 24px;
  letter-spacing: -0.035em;
}

.feature-card p {
  max-width: 500px;
  margin-bottom: 0;
  color: var(--muted);
}

.gallery-section {
  overflow: hidden;
  padding-top: 80px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 20px;
}

.gallery-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  background: #d9bdff;
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: transform 180ms ease;
}

.gallery-card:nth-child(even) {
  transform: translateY(42px);
}

.gallery-card:hover {
  transform: translateY(-6px);
}

.gallery-card:nth-child(even):hover {
  transform: translateY(34px);
}

.gallery-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1242 / 2688;
  object-fit: cover;
}

.remote-panel {
  position: relative;
  overflow: hidden;
  padding: 70px;
  border-radius: var(--radius-lg);
  background: #18151f;
  color: white;
  box-shadow: 0 32px 90px rgba(23, 18, 32, 0.24);
}

.remote-panel::after {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -190px;
  bottom: -290px;
  border: 1px solid rgba(218, 198, 255, 0.34);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(140, 99, 246, 0.34), transparent 65%);
  content: "";
}

.remote-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.remote-panel .eyebrow {
  color: var(--lilac);
}

.remote-panel h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5.4vw, 68px);
  font-weight: 880;
  letter-spacing: -0.05em;
  line-height: 1;
}

.remote-panel .remote-lede {
  max-width: 680px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
}

.connection-flow {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.flow-node {
  position: relative;
  min-height: 118px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.flow-node:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -10px;
  width: 10px;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
  content: "";
}

.flow-node small {
  display: block;
  margin-bottom: 8px;
  color: var(--lilac);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.flow-node strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}

.privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.7fr);
  align-items: center;
  gap: 70px;
  padding: 64px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 8%, rgba(189, 240, 199, 0.68), transparent 16rem),
    rgba(255, 255, 255, 0.68);
}

.privacy-panel h2 {
  margin-bottom: 20px;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 880;
  letter-spacing: -0.05em;
  line-height: 1;
}

.privacy-panel p {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 17px;
}

.privacy-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  border: 1px solid rgba(23, 21, 29, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 720;
}

.privacy-list li::before {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #d9f8df;
  color: #11742b;
  content: "✓";
  font-size: 13px;
  font-weight: 900;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  counter-reset: step;
}

.step {
  padding: 30px 0;
  border-top: 2px solid var(--ink);
  counter-increment: step;
}

.step::before {
  display: block;
  margin-bottom: 54px;
  color: var(--violet-dark);
  content: "0" counter(step);
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 12px;
  font-weight: 850;
}

.step h3 {
  margin-bottom: 10px;
  font-size: 23px;
  letter-spacing: -0.03em;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
}

.support-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px;
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, #d8c1ff, #f0c5ff 48%, #ffd8b5);
}

.support-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 880;
  letter-spacing: -0.05em;
  line-height: 1;
}

.support-panel p {
  max-width: 580px;
  margin-bottom: 0;
  color: rgba(23, 21, 29, 0.72);
}

.support-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
}

.site-footer {
  width: var(--page);
  margin: 0 auto;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.footer-links a {
  color: #4e4956;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

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

/* Privacy page */

.legal-page {
  background:
    radial-gradient(circle at 12% 4%, rgba(218, 198, 255, 0.65), transparent 23rem),
    radial-gradient(circle at 92% 2%, rgba(255, 217, 182, 0.58), transparent 26rem),
    var(--paper);
}

.legal-hero {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0 52px;
}

.legal-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(48px, 8vw, 82px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.legal-hero p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}

.legal-meta {
  display: inline-flex;
  margin-bottom: 25px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: #554c61;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  width: min(1120px, calc(100% - 40px));
  grid-template-columns: 230px minmax(0, 760px);
  justify-content: center;
  gap: 64px;
  margin: 0 auto;
  padding-bottom: 110px;
}

.legal-toc {
  align-self: start;
  position: sticky;
  top: 28px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
}

.legal-toc strong {
  display: block;
  margin-bottom: 11px;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-toc a {
  display: block;
  padding: 6px 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 620;
  line-height: 1.35;
  text-decoration: none;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  color: var(--violet-dark);
}

.legal-content {
  min-width: 0;
  padding: 52px clamp(24px, 6vw, 68px);
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 24px 70px rgba(39, 27, 58, 0.08);
}

.legal-content section {
  scroll-margin-top: 30px;
}

.legal-content section + section {
  margin-top: 48px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 17px;
  font-size: 28px;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.legal-content p,
.legal-content li {
  color: #504c55;
  font-size: 16px;
}

.legal-content p:last-child,
.legal-content ul:last-child {
  margin-bottom: 0;
}

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

.legal-content li + li {
  margin-top: 7px;
}

.legal-content a {
  color: var(--violet-dark);
  font-weight: 680;
  overflow-wrap: anywhere;
}

.legal-callout {
  margin: 28px 0 0;
  padding: 22px;
  border: 1px solid rgba(99, 57, 203, 0.16);
  border-radius: 18px;
  background: rgba(218, 198, 255, 0.22);
}

.legal-callout strong {
  display: block;
  margin-bottom: 5px;
}

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

.beta-page {
  background:
    radial-gradient(circle at 76% 34%, rgba(189, 240, 199, 0.72), transparent 23rem),
    radial-gradient(circle at 18% 14%, rgba(255, 217, 182, 0.62), transparent 26rem),
    var(--paper);
}

.beta-hero {
  display: grid;
  width: var(--page);
  min-height: calc(100vh - 185px);
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(42px, 8vw, 124px);
  margin: 0 auto;
  padding: 82px 0 100px;
}

.beta-copy {
  max-width: 640px;
}

.beta-copy h1 {
  margin-bottom: 26px;
  font-size: clamp(50px, 6.2vw, 82px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.beta-copy h1 span {
  background: linear-gradient(110deg, #277947, #4bae6a 48%, #d77558);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.beta-lede {
  max-width: 580px;
  margin-bottom: 14px;
  color: #39343e;
  font-size: clamp(21px, 2.3vw, 28px);
  font-weight: 720;
  letter-spacing: -0.025em;
  line-height: 1.27;
}

.beta-note {
  max-width: 500px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 16px;
}

.beta-art {
  position: relative;
  display: grid;
  justify-items: center;
  isolation: isolate;
}

.beta-flower-frame {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 34px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 50%, transparent 50%) 0 0 / 24px 24px,
    linear-gradient(rgba(255, 255, 255, 0.22) 50%, transparent 50%) 0 0 / 24px 24px,
    rgba(255, 255, 255, 0.68);
  box-shadow: 0 28px 70px rgba(35, 92, 57, 0.18);
}

.beta-flower-frame img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 12px rgba(23, 21, 29, 0.14));
  image-rendering: pixelated;
}

.beta-status {
  display: inline-flex;
  position: relative;
  z-index: 1;
  align-items: center;
  gap: 9px;
  margin: 18px 0 0;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 24px rgba(36, 90, 55, 0.1);
  color: #39714d;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 12px;
  font-weight: 750;
}

.beta-status span {
  width: 9px;
  height: 9px;
  background: #4bae6a;
  box-shadow: 0 0 0 5px rgba(75, 174, 106, 0.16);
}

.pixel {
  position: absolute;
  z-index: 0;
  width: 24px;
  height: 24px;
  background: var(--violet);
  box-shadow: 24px 0 0 var(--lilac), 0 24px 0 var(--lilac), 24px 24px 0 var(--violet);
}

.pixel-one {
  top: 14%;
  right: 0;
}

.pixel-two {
  bottom: 12%;
  left: -14px;
  background: #e28163;
  box-shadow: 24px 0 0 var(--peach), 0 24px 0 var(--peach), 24px 24px 0 #e28163;
}

.pixel-three {
  top: 48%;
  left: -48px;
  width: 16px;
  height: 16px;
  background: #4bae6a;
  box-shadow: 16px 0 0 var(--green), 0 16px 0 var(--green), 16px 16px 0 #4bae6a;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

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

  .hero-copy {
    text-align: center;
  }

  .hero-lede {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-visual {
    width: min(600px, 100%);
    margin: 0 auto;
  }

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

  .gallery {
    width: max-content;
    grid-template-columns: repeat(4, 240px);
  }

  .gallery-section .section-shell {
    overflow-x: auto;
    padding-bottom: 70px;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .gallery-card {
    scroll-snap-align: start;
  }

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

  .flow-node:not(:last-child)::after {
    display: none;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legal-toc {
    position: static;
    display: none;
  }

  .beta-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 78px 0;
  }

  .beta-copy {
    max-width: 680px;
    text-align: center;
  }

  .beta-copy .button {
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  :root {
    --page: min(1180px, calc(100% - 28px));
    --radius-lg: 28px;
  }

  .site-header {
    margin-top: 10px;
  }

  .nav-shell {
    border-radius: 18px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .hero {
    gap: 24px;
    padding: 70px 0 55px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 56px);
  }

  .hero-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-orbit {
    right: 0;
  }

  .device-shot-main {
    right: 4%;
    width: 270px;
  }

  .device-shot-side {
    left: 0;
    width: 190px;
  }

  .note-online {
    top: 65px;
    left: 2px;
  }

  .note-private {
    right: 2px;
    bottom: 70px;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    gap: 20px;
    margin-bottom: 34px;
  }

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

  .feature-card {
    min-height: 220px;
    padding: 25px;
  }

  .feature-index {
    margin-bottom: 30px;
  }

  .remote-panel,
  .privacy-panel,
  .support-panel {
    padding: 38px 25px;
  }

  .connection-flow {
    grid-template-columns: 1fr;
  }

  .privacy-panel {
    gap: 34px;
  }

  .support-panel,
  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-actions {
    width: 100%;
  }

  .legal-hero {
    width: min(100% - 28px, 900px);
    padding: 82px 0 35px;
  }

  .legal-layout {
    width: min(100% - 28px, 1120px);
    padding-bottom: 70px;
  }

  .legal-content {
    padding: 36px 22px;
    border-radius: 24px;
  }

  .beta-hero {
    gap: 48px;
    padding: 68px 0 72px;
  }

  .beta-copy h1 {
    font-size: clamp(44px, 13vw, 56px);
  }

  .beta-lede {
    font-size: 21px;
  }

  .beta-flower-frame {
    width: min(100%, 380px);
    padding: 16px;
    border-radius: 26px;
  }

  .pixel-one {
    right: 2px;
  }

  .pixel-two {
    left: 2px;
  }

  .pixel-three {
    left: 0;
  }
}

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

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