:root {
  --accent: #1a73e8;
  --accent-2: #4a90e2;
  --accent-deep: #1457b3;
  --accent-soft: #eef5ff;
  --accent-line: #c9dcf7;
  --bg: #f8fafd;
  --card: #ffffff;
  --border: #e3e8f0;
  --text: #1c2430;
  --muted: #67707f;
  --success: #188038;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.05), 0 1px 3px rgba(16, 24, 40, 0.08);
  --shadow-md: 0 12px 32px -12px rgba(16, 24, 40, 0.18);
  --shadow-lg: 0 28px 64px -24px rgba(16, 24, 40, 0.3);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1100px;
  --header-h: 64px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection {
  background: #cfe4ff;
}

:focus-visible {
  outline: 3px solid rgba(26, 115, 232, 0.45);
  outline-offset: 2px;
  border-radius: 4px;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 32px);
}

.container.narrow {
  max-width: 760px;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 10px 16px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: top 180ms var(--ease-out);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(248, 250, 253, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 1px 0 rgba(16, 24, 40, 0.02), 0 8px 24px -16px rgba(16, 24, 40, 0.16);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  font-size: 16.5px;
  letter-spacing: -0.01em;
  transition: transform 160ms var(--ease-out);
}

.brand:active {
  transform: scale(0.97);
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  flex: none;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-deep));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(26, 115, 232, 0.35);
}

.brand-mark svg {
  width: 19px;
  height: 19px;
  stroke: #fff;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: background 160ms ease, transform 160ms var(--ease-out);
}

.nav-toggle:active {
  transform: scale(0.94);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-toggle .ic-close {
  display: none;
}

.nav-toggle[aria-expanded="true"] .ic-open {
  display: none;
}

.nav-toggle[aria-expanded="true"] .ic-close {
  display: block;
}

.nav-menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 12px 18px 16px;
  transform: translateY(-8px);
  transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out), visibility 200ms;
}

.nav-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-link {
  display: block;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  transition: background 160ms ease, color 160ms ease;
}

.nav-cta {
  margin-top: 10px;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 13px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.01em;
  transition: transform 160ms var(--ease-out), box-shadow 200ms var(--ease-out), background 200ms ease, border-color 200ms ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn svg {
  width: 17px;
  height: 17px;
  flex: none;
}

.btn-sm {
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 11px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-2), var(--accent-deep));
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(26, 115, 232, 0.55);
}

.btn-ghost {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-light {
  background: #fff;
  color: var(--accent-deep);
  box-shadow: 0 10px 24px -10px rgba(9, 40, 89, 0.45);
}

.hero {
  padding: clamp(40px, 8vw, 88px) 0 clamp(88px, 12vw, 140px);
  background:
    radial-gradient(52% 46% at 82% 8%, rgba(74, 144, 226, 0.14), transparent 70%),
    radial-gradient(40% 38% at 6% 22%, rgba(26, 115, 232, 0.1), transparent 70%);
}

.hero-grid {
  display: grid;
  gap: clamp(40px, 6vw, 56px);
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 99px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
}

.badge svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  font-size: clamp(2.15rem, 6.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: clamp(15.5px, 2vw, 17.5px);
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 56ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
}

.hero-points svg {
  width: 15px;
  height: 15px;
  color: var(--success);
  flex: none;
}

.hero-visual {
  position: relative;
  padding: 34px 0 46px;
}

.mock-browser {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--border);
  background: #fbfcfe;
}

.mock-dots {
  display: inline-flex;
  gap: 6px;
  flex: none;
}

.mock-dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e3e8f0;
}

.mock-dots i:nth-child(1) {
  background: #ff8a80;
}

.mock-dots i:nth-child(2) {
  background: #ffd54f;
}

.mock-dots i:nth-child(3) {
  background: #7bc86c;
}

.mock-url {
  flex: 1;
  max-width: 240px;
  margin-inline: auto;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  background: #eef1f6;
  border-radius: 99px;
  padding: 5px 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-page {
  position: relative;
  padding: 18px;
  background:
    radial-gradient(60% 50% at 50% 0%, #eaf2fd, transparent 70%),
    #fff;
  min-height: 240px;
}

.mock-page.tall {
  min-height: 360px;
}

.mock-nav {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 4px 14px;
}

.mock-branddot {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-deep));
  flex: none;
}

.mock-pill {
  margin-left: auto;
  width: 52px;
  height: 18px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-deep));
  opacity: 0.85;
}

.mock-hero {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 4px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f0f6ff, #e2edfc);
  margin-bottom: 14px;
}

.mock-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.mock-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
}

.mock-card i {
  height: 34px;
  border-radius: 7px;
  background: #e9eef6;
  margin-bottom: 2px;
}

.mock-card b {
  height: 7px;
  border-radius: 99px;
  background: #dfe6f0;
}

.mock-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 2px 4px 8px;
}

.mock-line {
  height: 9px;
  border-radius: 99px;
  background: #dfe6f0;
}

.mock-line.w-70 {
  width: 70%;
}

.mock-line.w-60 {
  width: 60%;
}

.mock-line.w-55 {
  width: 55%;
}

.mock-line.w-65 {
  width: 65%;
}

.mock-line.w-50 {
  width: 50%;
}

.mock-line.w-40 {
  width: 40%;
}

.mock-line.w-30 {
  width: 30%;
}

.mock-line.w-20 {
  width: 20%;
}

.mock-line.w-12 {
  width: 12%;
}

.mock-drag {
  position: absolute;
  left: 34%;
  top: 30%;
  width: 34%;
  height: 34%;
  border: 2px dashed var(--accent);
  border-radius: 8px;
  background: rgba(26, 115, 232, 0.12);
  box-shadow: 0 0 0 1px rgba(26, 115, 232, 0.15);
}

.mock-drag-toolbar {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translate(-50%, 10px);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 6px 16px -4px rgba(26, 115, 232, 0.5);
}

.mock-popup {
  position: absolute;
  right: -6px;
  bottom: 8px;
  width: min(290px, 78vw);
  background: #f5f7fb;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 13px;
  animation: floaty 6s ease-in-out infinite;
}

.mock-chip {
  position: absolute;
  left: -4px;
  top: -12px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 9px 13px;
  animation: floaty 7s ease-in-out 0.8s infinite reverse;
}

.mock-chip svg {
  width: 17px;
  height: 17px;
  color: var(--success);
  flex: none;
}

.mock-chip span {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.mock-chip b {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.mock-chip small {
  font-size: 10px;
  color: var(--muted);
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.mp-head {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 11px;
}

.mp-logo {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  flex: none;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(26, 115, 232, 0.35);
}

.mp-logo svg {
  width: 17px;
  height: 17px;
  stroke: #fff;
}

.mp-titles {
  display: flex;
  flex-direction: column;
}

.mp-titles b {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.mp-titles small {
  font-size: 10px;
  color: var(--muted);
}

.mp-modes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 11px;
}

.mp-mode {
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 7px 9px;
}

.mp-mode.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 0 1px var(--accent);
}

.mp-ic {
  width: 27px;
  height: 27px;
  border-radius: 7px;
  flex: none;
  background: #eef1f7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mp-mode.active .mp-ic {
  background: #dcecff;
}

.mp-ic svg {
  width: 14px;
  height: 14px;
  stroke: #51617c;
}

.mp-mode.active .mp-ic svg {
  stroke: var(--accent);
}

.mp-txt {
  display: flex;
  flex-direction: column;
}

.mp-txt b {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.mp-txt small {
  font-size: 9.5px;
  color: var(--muted);
}

.mp-check {
  margin-left: auto;
  color: var(--accent);
}

.mp-check svg {
  width: 13px;
  height: 13px;
}

.mp-format {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 11px;
}

.mp-format > span:first-child {
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
}

.mp-seg {
  display: flex;
  gap: 2px;
  background: #e9edf4;
  border-radius: 8px;
  padding: 2px;
}

.mp-seg i {
  font-style: normal;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  padding: 4px 12px;
  border-radius: 6px;
  cursor: default;
}

.mp-seg i.on {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.14);
}

.mp-btn {
  width: 100%;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-deep));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px -4px rgba(26, 115, 232, 0.55);
}

.mp-foot {
  margin-top: 9px;
  font-size: 9px;
  color: var(--muted);
  text-align: center;
}

.trust-bar {
  border-block: 1px solid var(--border);
  background: var(--card);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
  padding-block: 26px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-item svg {
  width: 21px;
  height: 21px;
  color: var(--accent);
  flex: none;
}

.trust-item span {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.trust-item b {
  font-size: 13.5px;
  font-weight: 700;
}

.trust-item small {
  font-size: 11.5px;
  color: var(--muted);
}

.section {
  padding-block: clamp(56px, 9vw, 96px);
}

.section-alt {
  background: #f0f4fa;
}

.section-head {
  max-width: 640px;
  margin: 0 auto clamp(32px, 5vw, 48px);
  text-align: center;
}

.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin-bottom: 12px;
}

.section-head p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), border-color 200ms ease;
}

.feature-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  margin-bottom: 16px;
}

.feature-ic svg {
  width: 21px;
  height: 21px;
}

.feature-card h3 {
  font-size: 16.5px;
  font-weight: 750;
  letter-spacing: -0.01em;
  margin-bottom: 7px;
}

.feature-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

.steps {
  list-style: none;
  counter-reset: step;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.steps li {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  position: relative;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-deep));
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 6px 14px -6px rgba(26, 115, 232, 0.5);
  margin-bottom: 14px;
}

.steps h3 {
  font-size: 16px;
  font-weight: 750;
  margin-bottom: 6px;
}

.steps p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}

.modes-demo {
  max-width: 720px;
  margin-inline: auto;
}

.mode-tabs {
  display: flex;
  gap: 4px;
  background: #e9edf4;
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 22px;
}

.mode-tab {
  flex: 1;
  padding: 10px 8px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--muted);
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.mode-tab.active {
  background: #fff;
  color: var(--accent);
  box-shadow: 0 1px 3px rgba(16, 24, 40, 0.14);
}

.mode-panel {
  animation: panelIn 240ms var(--ease-out);
}

.mode-panel[hidden] {
  display: none;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mock-window {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  padding: 6px;
}

.mock-window .mock-page {
  border-radius: 11px;
  border: 1px solid var(--border);
  min-height: 320px;
}

.mock-window .mock-page.tall {
  min-height: 420px;
}

.mock-capture {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(26, 115, 232, 0.09);
  border: 2px dashed var(--accent);
  border-radius: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 13px;
  white-space: nowrap;
}

.mock-capture svg {
  width: 15px;
  height: 15px;
}

.mock-capture.full {
  left: 10%;
  top: 55%;
}

.mock-capture.visible {
  left: 50%;
  top: 62%;
  transform: translateX(-50%);
}

.mock-drag.big {
  left: 24%;
  top: 34%;
  width: 52%;
  height: 40%;
}

.mode-caption {
  margin-top: 14px;
  text-align: center;
  font-size: 13.5px;
  color: var(--muted);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  padding: 17px 20px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  transition: color 160ms ease;
}

.faq-q svg {
  width: 17px;
  height: 17px;
  flex: none;
  color: var(--muted);
  transition: transform 200ms var(--ease-out), color 200ms ease;
}

.faq-item.open .faq-q {
  color: var(--accent);
}

.faq-item.open .faq-q svg {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms var(--ease-out);
}

.faq-item.open .faq-a {
  grid-template-rows: 1fr;
}

.faq-a-inner {
  overflow: hidden;
  padding: 0 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-item.open .faq-a-inner {
  padding-bottom: 18px;
}

.support {
  padding-bottom: clamp(64px, 10vw, 104px);
}

.support-card {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(135deg, #4a90e2 0%, #2b7be0 45%, #1457b3 100%);
  border-radius: var(--radius-lg);
  padding: clamp(38px, 7vw, 64px) clamp(22px, 6vw, 48px);
  color: #fff;
  box-shadow: 0 30px 60px -24px rgba(20, 87, 179, 0.55);
}

.support-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(38% 44% at 12% 0%, rgba(255, 255, 255, 0.16), transparent 70%),
    radial-gradient(34% 40% at 90% 100%, rgba(255, 255, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.support-card > * {
  position: relative;
}

.support-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 18px;
  color: #fff;
  opacity: 0.92;
}

.support-card h2 {
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.support-card p {
  max-width: 46ch;
  margin: 0 auto 26px;
  font-size: 14.5px;
  line-height: 1.65;
  opacity: 0.92;
}

.site-footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 40px 0 26px;
}

.legal-hero {
  padding: clamp(44px, 7vw, 72px) 0 clamp(20px, 3vw, 28px);
  background:
    radial-gradient(46% 60% at 78% 0%, rgba(74, 144, 226, 0.12), transparent 70%),
    radial-gradient(40% 50% at 8% 40%, rgba(26, 115, 232, 0.08), transparent 70%);
}

.legal-hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.4rem);
  letter-spacing: -0.03em;
  font-weight: 800;
  line-height: 1.15;
}

.legal-meta {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}

.legal {
  padding-bottom: clamp(56px, 8vw, 88px);
}

.legal-inner p {
  font-size: 15px;
  line-height: 1.7;
  color: #3a4351;
  margin-bottom: 14px;
}

.legal-inner h2 {
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.01em;
  margin: 34px 0 10px;
}

.legal-inner ul {
  margin: 0 0 14px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-inner li {
  font-size: 15px;
  line-height: 1.65;
  color: #3a4351;
}

.legal-inner code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  background: #eef1f6;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1px 6px;
}

.footer-grid {
  display: grid;
  gap: 28px;
  margin-bottom: 28px;
}

.footer-brand .brand {
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  max-width: 34ch;
  margin-top: 12px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  align-items: center;
}

.footer-nav a {
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 600;
  transition: color 160ms ease;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .steps li {
    padding: 28px 24px;
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    flex-direction: row;
    align-items: center;
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .nav-link {
    padding: 8px 12px;
    font-size: 14.5px;
  }

  .nav-cta {
    margin: 0 0 0 8px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: center;
  }

  .hero-visual {
    padding: 20px 0 30px 10px;
  }

  .mock-popup {
    right: -22px;
    bottom: -26px;
    width: 300px;
  }

  .mock-chip {
    left: -22px;
    top: 6px;
  }

  .section-head p {
    font-size: 16px;
  }

  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-line);
  }

  .steps li:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .btn-primary:hover {
    box-shadow: 0 12px 26px -8px rgba(26, 115, 232, 0.6);
    transform: translateY(-1px);
  }

  .btn-ghost:hover {
    border-color: var(--accent-line);
    background: #fbfdff;
  }

  .btn-light:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px -10px rgba(9, 40, 89, 0.5);
  }

  .nav-link:hover {
    background: var(--accent-soft);
    color: var(--accent);
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .feature-card {
    padding: 28px 26px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .nav-toggle:hover {
    background: #eef1f6;
  }

  .faq-q:hover {
    color: var(--accent);
  }

  .faq-q:hover svg {
    color: var(--accent);
  }

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

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

  .mock-popup,
  .mock-chip {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .mode-panel {
    animation: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}