:root {
  color-scheme: light;
  --ink-950: #071827;
  --ink-900: #0d263b;
  --ink-800: #163b56;
  --ink-700: #31536b;
  --ink-600: #536d80;
  --blue-700: #1559c5;
  --blue-600: #1f6feb;
  --blue-500: #3787f5;
  --blue-100: #dcecff;
  --blue-50: #eef6ff;
  --paper: #fffefa;
  --canvas: #f4f7fb;
  --surface: #ffffff;
  --line: #dce5ec;
  --line-strong: #c3d1dc;
  --green: #117a53;
  --green-soft: #def6e9;
  --amber: #99630c;
  --amber-soft: #fff0cd;
  --shadow-sm: 0 8px 24px rgba(7, 24, 39, 0.08);
  --shadow-md: 0 24px 70px rgba(7, 24, 39, 0.14);
  --shadow-blue: 0 24px 70px rgba(31, 111, 235, 0.2);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 44px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--canvas);
  color: var(--ink-950);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 12% 10%, rgba(55, 135, 245, 0.1), transparent 25rem),
    radial-gradient(circle at 88% 24%, rgba(17, 122, 83, 0.07), transparent 23rem),
    var(--canvas);
  content: "";
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: var(--blue-700);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--blue-600);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(31, 111, 235, 0.42);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  border-radius: 10px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  color: var(--ink-950);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(195, 209, 220, 0.72);
  background: rgba(244, 247, 251, 0.87);
  backdrop-filter: blur(18px) saturate(140%);
}

.nav-shell {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink-950);
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand:hover {
  color: var(--ink-950);
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 7px 16px rgba(31, 111, 235, 0.2);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav > a:not(.button) {
  color: var(--ink-700);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

.desktop-nav > a:not(.button):hover,
.desktop-nav > a[aria-current="page"] {
  color: var(--ink-950);
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  display: grid;
  width: 44px;
  height: 44px;
  cursor: pointer;
  list-style: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink-950);
  font-size: 21px;
  font-weight: 800;
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-nav-panel {
  position: absolute;
  top: 54px;
  right: 0;
  display: grid;
  width: min(290px, calc(100vw - 32px));
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

.mobile-nav-panel a {
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--ink-800);
  font-weight: 750;
  text-decoration: none;
}

.mobile-nav-panel a:hover {
  background: var(--blue-50);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: var(--blue-600);
  box-shadow: 0 12px 28px rgba(31, 111, 235, 0.2);
  color: #fff;
  font-size: 15px;
  font-weight: 820;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  background: var(--blue-700);
  box-shadow: 0 16px 34px rgba(31, 111, 235, 0.26);
  color: #fff;
  transform: translateY(-2px);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: none;
  color: var(--ink-900);
}

.button-secondary:hover {
  border-color: var(--blue-600);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  color: var(--ink-950);
}

.button-dark {
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  color: var(--ink-950);
}

.button-dark:hover {
  background: var(--blue-50);
  color: var(--ink-950);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 14px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: #8fc0ff;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 76px 0 74px;
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: 48px;
  right: -190px;
  width: 580px;
  height: 580px;
  border: 1px solid rgba(31, 111, 235, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(31, 111, 235, 0.025),
    0 0 0 160px rgba(31, 111, 235, 0.02);
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 58px;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink-950);
  font-size: clamp(3.15rem, 6vw, 5.8rem);
  font-weight: 880;
  letter-spacing: -0.065em;
  line-height: 0.97;
}

.hero-copy h1 span {
  color: var(--blue-600);
}

.hero-lede {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--ink-700);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

.hero-price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 23px 0 0;
  color: var(--ink-600);
  font-size: 13px;
  font-weight: 690;
}

.price-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px var(--green-soft);
}

.product-boundary {
  max-width: 680px;
  margin: 24px 0 0;
  padding-left: 14px;
  border-left: 3px solid var(--line-strong);
  color: var(--ink-600);
  font-size: 13px;
  line-height: 1.55;
}

.product-boundary strong {
  color: var(--ink-800);
}

.hero-art {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border: 1px solid rgba(195, 209, 220, 0.8);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.42);
  isolation: isolate;
}

.hero-art::before {
  position: absolute;
  z-index: -2;
  inset: 38px 12px 38px 56px;
  border-radius: 50% 42% 46% 54%;
  background: linear-gradient(145deg, #d9eaff, #eef6ff 50%, #dff4eb);
  content: "";
  filter: blur(1px);
  transform: rotate(-7deg);
}

.device {
  position: absolute;
  overflow: hidden;
  width: 250px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 46px;
  background: #0b1520;
  box-shadow: var(--shadow-md);
}

.device::before {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 50%;
  width: 78px;
  height: 22px;
  border-radius: 999px;
  background: #0b1520;
  content: "";
  transform: translateX(-50%);
}

.device img {
  width: 100%;
  height: auto;
  aspect-ratio: 585 / 1266;
  border-radius: 38px;
  object-fit: cover;
  object-position: top center;
}

.device-primary {
  z-index: 3;
  top: 25px;
  right: 45px;
  transform: rotate(4deg);
  animation: float 7s ease-in-out infinite;
}

.device-secondary {
  z-index: 1;
  bottom: 5px;
  left: 18px;
  width: 218px;
  opacity: 0.96;
  transform: rotate(-8deg);
}

.floating-note {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  color: var(--ink-800);
  font-size: 13px;
  font-weight: 820;
  backdrop-filter: blur(12px);
}

.floating-note::before {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: var(--green-soft);
  color: var(--green);
  content: "✓";
  font-size: 14px;
  font-weight: 900;
}

.note-one {
  top: 148px;
  left: -6px;
}

.note-two {
  right: -8px;
  bottom: 78px;
}

.proof-band {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.proof-grid {
  display: grid;
  min-height: 108px;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  display: grid;
  gap: 3px;
  padding: 16px 25px;
  border-right: 1px solid var(--line);
}

.proof-item:first-child {
  padding-left: 0;
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  color: var(--ink-900);
  font-size: 16px;
  letter-spacing: -0.02em;
}

.proof-item span {
  color: var(--ink-600);
  font-size: 13px;
}

.section {
  padding: 108px 0;
}

.section-compact {
  padding: 78px 0;
}

.section-white {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.section-ink {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 5%, rgba(55, 135, 245, 0.28), transparent 25rem),
    radial-gradient(circle at 10% 100%, rgba(17, 122, 83, 0.2), transparent 28rem),
    var(--ink-950);
  color: #fff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading.center .eyebrow {
  justify-content: center;
}

.section-heading h2,
.split-copy h2,
.legal-hero h1,
.support-hero h1 {
  margin: 0;
  color: var(--ink-950);
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  font-weight: 860;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-heading p,
.split-copy > p {
  max-width: 700px;
  margin: 20px 0 0;
  color: var(--ink-600);
  font-size: 18px;
}

.center p {
  margin-inline: auto;
}

.steps-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.step-card {
  position: relative;
  min-height: 275px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.step-card::after {
  position: absolute;
  right: -42px;
  bottom: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--blue-50);
  content: "";
}

.step-number {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: var(--ink-950);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.step-card h3 {
  margin: 48px 0 9px;
  color: var(--ink-900);
  font-size: 22px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.step-card p {
  margin: 0;
  color: var(--ink-600);
}

.split {
  display: grid;
  align-items: center;
  gap: clamp(48px, 8vw, 100px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.split-reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.split-reverse .split-visual {
  order: 2;
}

.split-reverse .split-copy {
  order: 1;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
}

.feature-check {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 0;
}

.feature-check::before {
  width: 7px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-1px) rotate(45deg);
}

.feature-list strong {
  display: block;
  color: var(--ink-900);
  line-height: 1.35;
}

.feature-list li > div > span {
  display: block;
  margin-top: 3px;
  color: var(--ink-600);
  font-size: 14px;
}

.screenshot-stage {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #cfe0ee;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.32)),
    repeating-linear-gradient(0deg, transparent, transparent 29px, rgba(31, 111, 235, 0.055) 30px),
    repeating-linear-gradient(90deg, transparent, transparent 29px, rgba(31, 111, 235, 0.055) 30px),
    #e8f2fc;
}

.screenshot-stage .device {
  position: relative;
  inset: auto;
  width: min(285px, 70%);
  transform: rotate(-3deg);
}

.stage-card {
  position: absolute;
  right: 18px;
  bottom: 35px;
  width: 205px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.stage-card strong {
  display: block;
  color: var(--ink-900);
  line-height: 1.25;
}

.stage-card span {
  display: block;
  margin-top: 4px;
  color: var(--ink-600);
  font-size: 12px;
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  min-height: 220px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.75);
}

.feature-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 18px;
  font-weight: 900;
}

.feature-card h3 {
  margin: 28px 0 7px;
  color: var(--ink-900);
  font-size: 18px;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.feature-card p {
  margin: 0;
  color: var(--ink-600);
  font-size: 14px;
}

.use-case-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.use-case-card {
  position: relative;
  min-height: 248px;
  overflow: hidden;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.use-case-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.use-case-card::after {
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 120px;
  height: 120px;
  border: 18px solid var(--blue-50);
  border-radius: 50%;
  content: "";
}

.use-case-kicker {
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.use-case-card h3 {
  margin: 22px 0 9px;
  color: var(--ink-900);
  font-size: 21px;
  letter-spacing: -0.035em;
}

.use-case-card p {
  margin: 0;
  color: var(--ink-600);
  font-size: 14px;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 19px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.comparison-table th {
  background: #f8fafc;
  color: var(--ink-800);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.comparison-table th:nth-child(2) {
  background: var(--blue-50);
  color: var(--blue-700);
}

.comparison-table td {
  color: var(--ink-700);
  font-size: 14px;
}

.comparison-table td:first-child {
  color: var(--ink-900);
  font-weight: 760;
}

.comparison-table td:nth-child(2) {
  background: rgba(238, 246, 255, 0.65);
  color: var(--ink-900);
  font-weight: 760;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.table-note {
  margin: 15px 0 0;
  color: var(--ink-600);
  font-size: 12px;
}

.privacy-grid {
  display: grid;
  align-items: center;
  gap: 70px;
  grid-template-columns: 0.95fr 1.05fr;
}

.privacy-copy h2 {
  max-width: 680px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 4.7rem);
  font-weight: 860;
  letter-spacing: -0.06em;
  line-height: 0.99;
}

.privacy-copy p {
  max-width: 620px;
  margin: 23px 0 0;
  color: #bdd0df;
  font-size: 18px;
}

.privacy-copy .button {
  margin-top: 29px;
}

.privacy-points {
  display: grid;
  gap: 12px;
}

.privacy-point {
  display: grid;
  grid-template-columns: 47px 1fr;
  gap: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.privacy-point b {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 13px;
  background: rgba(143, 192, 255, 0.16);
  color: #8fc0ff;
  font-size: 17px;
}

.privacy-point strong {
  display: block;
  color: #fff;
  line-height: 1.35;
}

.privacy-point span {
  display: block;
  margin-top: 4px;
  color: #a9bfce;
  font-size: 13px;
}

.boundaries {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}

.boundary-card {
  padding: 32px;
  border-radius: var(--radius-lg);
}

.boundary-card h3 {
  margin: 0 0 22px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.boundary-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.boundary-card li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 9px;
  font-size: 14px;
}

.does-card {
  border: 1px solid #b9e4cf;
  background: #effaf5;
}

.does-card h3,
.does-card li::before {
  color: var(--green);
}

.does-not-card {
  border: 1px solid #efd9aa;
  background: #fff9eb;
}

.does-not-card h3,
.does-not-card li::before {
  color: var(--amber);
}

.boundary-card li::before {
  content: "✓";
  font-weight: 900;
}

.does-not-card li::before {
  content: "—";
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface);
}

.faq-item summary {
  display: grid;
  cursor: pointer;
  list-style: none;
  grid-template-columns: 1fr 28px;
  gap: 20px;
  padding: 22px 24px;
  color: var(--ink-900);
  font-weight: 790;
  line-height: 1.4;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 9px;
  background: var(--blue-50);
  color: var(--blue-700);
  content: "+";
  font-size: 18px;
  font-weight: 500;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  max-width: 760px;
  padding: 0 24px 23px;
  color: var(--ink-600);
  font-size: 15px;
}

.faq-answer p {
  margin: 0;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 7vw, 72px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 85% 20%, rgba(101, 166, 255, 0.5), transparent 18rem),
    linear-gradient(135deg, #0c2c48, #1559c5);
  box-shadow: var(--shadow-blue);
  color: #fff;
}

.cta-panel::after {
  position: absolute;
  right: -95px;
  bottom: -120px;
  width: 330px;
  height: 330px;
  border: 55px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.cta-panel h2 {
  position: relative;
  z-index: 1;
  max-width: 790px;
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 860;
  letter-spacing: -0.06em;
  line-height: 1;
}

.cta-panel p {
  position: relative;
  z-index: 1;
  max-width: 670px;
  margin: 21px 0 0;
  color: #cfdef0;
  font-size: 17px;
}

.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 29px;
}

.availability-note {
  position: relative;
  z-index: 1;
  margin-top: 15px;
  color: #b8cce2;
  font-size: 12px;
}

.site-footer {
  padding: 48px 0 30px;
  border-top: 1px solid var(--line);
  background: #edf2f7;
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
}

.footer-brand p {
  max-width: 430px;
  margin: 16px 0 0;
  color: var(--ink-600);
  font-size: 13px;
}

.footer-column strong {
  display: block;
  margin-bottom: 11px;
  color: var(--ink-900);
  font-size: 13px;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--ink-600);
  font-size: 13px;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--ink-950);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-600);
  font-size: 12px;
}

.legal-hero,
.support-hero {
  padding: 82px 0 65px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(238, 246, 255, 0.7), rgba(239, 250, 245, 0.6)),
    var(--surface);
}

.legal-hero p,
.support-hero > .container > p {
  max-width: 720px;
  margin: 21px 0 0;
  color: var(--ink-600);
  font-size: 18px;
}

.updated {
  display: inline-flex;
  margin-top: 24px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink-600);
  font-size: 12px;
  font-weight: 760;
}

.legal-summary-grid {
  display: grid;
  gap: 12px;
  margin-top: 36px;
  grid-template-columns: repeat(3, 1fr);
}

.legal-summary-card {
  padding: 19px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
}

.legal-summary-card strong {
  display: block;
  color: var(--ink-900);
  font-size: 14px;
}

.legal-summary-card span {
  display: block;
  margin-top: 4px;
  color: var(--ink-600);
  font-size: 12px;
}

.legal-section {
  padding: 72px 0 110px;
}

.legal-layout {
  display: grid;
  align-items: start;
  gap: 70px;
  grid-template-columns: 235px minmax(0, 760px);
}

.legal-toc {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 7px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
}

.legal-toc strong {
  margin-bottom: 4px;
  color: var(--ink-900);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-toc a {
  padding: 5px 7px;
  border-radius: 7px;
  color: var(--ink-600);
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}

.legal-toc a:hover {
  background: var(--blue-50);
  color: var(--blue-700);
}

.legal-content {
  min-width: 0;
}

.legal-content h2 {
  margin: 56px 0 13px;
  color: var(--ink-900);
  font-size: 27px;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 31px 0 10px;
  color: var(--ink-800);
  font-size: 18px;
  line-height: 1.35;
}

.legal-content p,
.legal-content li {
  color: var(--ink-700);
}

.legal-content ul,
.legal-content ol {
  display: grid;
  gap: 9px;
  padding-left: 23px;
}

.legal-callout {
  margin: 26px 0;
  padding: 22px;
  border: 1px solid #c8dff8;
  border-radius: 16px;
  background: var(--blue-50);
  color: var(--ink-800);
}

.legal-callout strong {
  color: var(--ink-950);
}

.legal-callout.warning {
  border-color: #efd9aa;
  background: #fff9eb;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.legal-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 13px;
}

.legal-table th {
  background: #f7fafc;
  color: var(--ink-900);
}

.legal-table td {
  color: var(--ink-700);
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.support-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
}

.support-card {
  display: block;
  min-height: 215px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: inherit;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.support-card:hover {
  border-color: #b8d5f5;
  box-shadow: var(--shadow-sm);
  color: inherit;
  transform: translateY(-3px);
}

.support-card b {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--blue-100);
  color: var(--blue-700);
}

.support-card h2,
.support-card h3 {
  margin: 27px 0 8px;
  color: var(--ink-900);
  font-size: 18px;
  letter-spacing: -0.03em;
}

.support-card p {
  margin: 0;
  color: var(--ink-600);
  font-size: 13px;
}

.support-block {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.support-block + .support-block {
  margin-top: 18px;
}

.support-block h2 {
  margin: 0 0 11px;
  color: var(--ink-900);
  font-size: 25px;
  letter-spacing: -0.04em;
}

.support-block h3 {
  margin: 28px 0 7px;
  color: var(--ink-800);
  font-size: 17px;
}

.support-block p,
.support-block li {
  color: var(--ink-700);
  font-size: 14px;
}

.support-block ol,
.support-block ul {
  display: grid;
  gap: 8px;
}

.contact-panel {
  display: grid;
  align-items: center;
  gap: 35px;
  padding: 36px;
  border: 1px solid #c9ddf5;
  border-radius: var(--radius-lg);
  background: var(--blue-50);
  grid-template-columns: 1fr auto;
}

.contact-panel h2 {
  margin: 0;
  color: var(--ink-900);
  font-size: 26px;
  letter-spacing: -0.04em;
}

.contact-panel p {
  margin: 8px 0 0;
  color: var(--ink-600);
  font-size: 14px;
}

.not-found {
  display: grid;
  min-height: calc(100vh - 74px);
  place-items: center;
  padding: 70px 20px;
  text-align: center;
}

.not-found-code {
  color: var(--blue-600);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.not-found h1 {
  margin: 12px 0;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.not-found p {
  max-width: 520px;
  margin: 0 auto 26px;
  color: var(--ink-600);
}

@keyframes float {
  0%,
  100% {
    transform: rotate(4deg) translateY(0);
  }
  50% {
    transform: rotate(2.5deg) translateY(-10px);
  }
}

@media (max-width: 1020px) {
  .hero-grid {
    gap: 25px;
    grid-template-columns: minmax(0, 1fr) 390px;
  }

  .hero-art {
    min-height: 560px;
    transform: scale(0.92);
    transform-origin: center right;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-layout {
    gap: 45px;
    grid-template-columns: 210px minmax(0, 1fr);
  }
}

@media (max-width: 860px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-grid,
  .split,
  .split-reverse,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    width: min(100%, 540px);
    min-height: 560px;
    margin: 0 auto;
    transform: none;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .device-primary {
    top: 28px;
    right: 50%;
    width: 260px;
    animation: none;
    transform: translateX(50%);
  }

  .device-secondary {
    display: none;
  }

  .note-one {
    top: 92px;
    left: 18px;
  }

  .note-two {
    right: 18px;
    bottom: 46px;
  }

  .split-reverse .split-visual,
  .split-reverse .split-copy {
    order: initial;
  }

  .steps-grid,
  .use-case-grid,
  .support-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }

  .proof-item {
    border-bottom: 1px solid var(--line);
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(3),
  .proof-item:nth-child(4) {
    border-bottom: 0;
  }

  .proof-item:nth-child(3) {
    padding-left: 0;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }

  .legal-toc strong {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-shell {
    min-height: 66px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero {
    padding: 46px 0 56px;
  }

  .hero-copy h1 {
    font-size: clamp(2.9rem, 14vw, 4.1rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-price {
    align-items: flex-start;
  }

  .price-dot {
    margin-top: 6px;
  }

  .hero-art {
    min-height: 520px;
    margin-top: 10px;
  }

  .hero-art::before {
    inset: 38px 0 35px 0;
  }

  .device-primary {
    top: 24px;
    right: 50%;
    width: min(232px, 68vw);
    transform: translateX(50%);
  }

  .device-secondary {
    display: none;
  }

  .note-one {
    top: 82px;
    left: 10px;
  }

  .note-two {
    right: 10px;
    bottom: 34px;
  }

  .floating-note {
    max-width: 175px;
    padding: 9px 11px;
    font-size: 11px;
  }

  .floating-note::before {
    width: 24px;
    height: 24px;
  }

  .proof-grid,
  .steps-grid,
  .feature-grid,
  .use-case-grid,
  .boundaries,
  .support-grid,
  .legal-summary-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-item,
  .proof-item:first-child,
  .proof-item:nth-child(3) {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 78px 0;
  }

  .section-compact {
    padding: 58px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .step-card {
    min-height: auto;
  }

  .step-card h3 {
    margin-top: 33px;
  }

  .screenshot-stage {
    min-height: 520px;
  }

  .stage-card {
    right: 10px;
    bottom: 20px;
    width: 180px;
  }

  .privacy-grid {
    gap: 45px;
  }

  .cta-panel {
    border-radius: 28px;
  }

  .cta-actions .button {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-hero,
  .support-hero {
    padding: 58px 0 48px;
  }

  .legal-section {
    padding: 54px 0 80px;
  }

  .legal-toc {
    grid-template-columns: 1fr 1fr;
  }

  .support-block,
  .contact-panel {
    padding: 24px;
  }

  .contact-panel {
    align-items: start;
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
