/* polery.com v2 · Wix-clear · white background + Inter sans + blue accent */

:root {
  --white: #FFFFFF;
  --gray-50: #F7F9FB;
  --gray-100: #F1F5F9;
  --gray-200: #E5E9F0;
  --gray-300: #CBD5E1;

  --ink: #0B1220;
  --ink-soft: #475569;
  --ink-muted: #94A3B8;

  --blue: #2C5BFF;
  --blue-dark: #1E3FB8;
  --blue-soft: rgba(44, 91, 255, 0.08);

  --red: #EF4444;
  --green: #10B981;
  --green-soft: rgba(16, 185, 129, 0.10);

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --container-narrow: 960px;
  --gutter-d: 64px;
  --gutter-m: 20px;
  --section-pad-d: 96px;
  --section-pad-m: 64px;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, ol, ul, li, table, th, td, figure { margin: 0; padding: 0; }
ol, ul { list-style: none; }
table { border-collapse: collapse; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; padding: 0; font: inherit; color: inherit; cursor: pointer; }

::selection { background: var(--blue); color: #fff; }

html {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  text-rendering: optimizeLegibility;
  text-wrap: pretty;
}

/* === containers === */
.section-inner, .header-inner, .footer-inner, .footer-meta, .hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter-d);
  padding-right: var(--gutter-d);
}
.section-inner.narrow { max-width: var(--container-narrow); }
@media (max-width: 768px) {
  .section-inner, .header-inner, .footer-inner, .footer-meta, .hero-inner {
    padding-left: var(--gutter-m);
    padding-right: var(--gutter-m);
  }
}

main > section {
  padding-top: var(--section-pad-d);
  padding-bottom: var(--section-pad-d);
}
@media (max-width: 768px) {
  main > section {
    padding-top: var(--section-pad-m);
    padding-bottom: var(--section-pad-m);
  }
}

/* alternating section backgrounds */
.industries, .what-you-get, .compare, .faq { background: var(--gray-50); }
.honest { background: var(--ink); color: #fff; }

/* === type primitives === */
.section-eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-head { margin-bottom: 56px; }
.section-head-center { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; }

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
}
.section-sub {
  margin-top: 16px;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 56ch;
  margin-left: auto; margin-right: auto;
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--r-sm);
  transition: background-color .15s, color .15s, border-color .15s, transform .15s, box-shadow .15s;
  white-space: nowrap;
  text-align: center;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
}
.btn-sm { height: 38px; padding: 0 16px; font-size: 14px; }
.btn-lg { height: 52px; padding: 0 28px; font-size: 16px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 8px 16px -4px rgba(44, 91, 255, 0.30); }
.btn-ghost { background: var(--white); color: var(--ink); border-color: var(--gray-200); }
.btn-ghost:hover { background: var(--gray-50); border-color: var(--gray-300); }

/* === HEADER === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--gray-200);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.logo { display: inline-flex; align-items: center; gap: 8px; }
.logo-mark { color: var(--blue); font-size: 14px; line-height: 1; }
.logo-text { font-weight: 800; font-size: 19px; letter-spacing: -0.015em; color: var(--ink); }
.logo-footer .logo-text { color: #fff; }

.header-nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
}
.header-nav a {
  color: var(--ink-soft);
  font-weight: 500;
  transition: color .15s;
}
.header-nav a:hover { color: var(--ink); }

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

/* === HERO === */
.hero { padding-top: 40px !important; padding-bottom: 24px !important; }
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 64px;
  align-items: center;
}
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 56px; }
}
@media (max-width: 768px) {
  .hero { padding-top: 32px !important; padding-bottom: 32px !important; }
}

.badge {
  display: inline-block;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--ink);
}
.hero-title em {
  font-style: normal;
  color: var(--blue);
  display: block;
}
.hero-sub {
  margin-top: 24px;
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 38ch;
}
.hero-sub strong { color: var(--ink); font-weight: 700; }
.hero-cta-row {
  margin-top: 32px;
  display: flex; gap: 12px; flex-wrap: wrap;
}
.hero-meta {
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-muted);
}

/* hero mockup (desktop + mobile overlap) */
.hero-mockup { position: relative; min-height: 380px; }
@media (max-width: 1024px) { .hero-mockup { max-width: 540px; margin: 0 auto; } }

.mockup-desktop {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  box-shadow: 0 30px 60px -20px rgba(11, 18, 32, 0.18), 0 8px 24px -6px rgba(11, 18, 32, 0.08);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/10;
  display: flex; flex-direction: column;
}
.mockup-chrome {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}
.mockup-chrome .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--gray-300);
}
.mockup-url {
  margin-left: auto; margin-right: auto;
  font-size: 11px;
  color: var(--ink-muted);
  font-weight: 500;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 3px 12px;
  border-radius: 12px;
  max-width: 60%;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mockup-content {
  flex: 1;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
}
.mockup-content img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.mockup-fallback-text {
  display: none;
  font-size: 28px; font-weight: 800; color: var(--ink-muted); letter-spacing: -0.015em;
}
.mockup-content.mockup-fallback {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #F7F9FB 0%, #E5E9F0 100%);
}
.mockup-content.mockup-fallback .mockup-fallback-text { display: block; }

.mockup-mobile {
  position: absolute;
  bottom: -28px;
  right: -16px;
  width: 128px;
  aspect-ratio: 9/19;
  background: var(--ink);
  border-radius: 22px;
  padding: 6px;
  box-shadow: 0 20px 40px -12px rgba(11, 18, 32, 0.30);
}
.mockup-mobile-screen {
  width: 100%; height: 100%; border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, #F7F9FB, #E5E9F0);
}
.mockup-mobile-screen img { width: 100%; height: 100%; object-fit: cover; }

/* === INDUSTRIES === */
.industries-eyebrow { text-align: center; margin-bottom: 24px; }
.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.industry-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color .15s, transform .15s, color .15s;
}
.industry-chip:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.ind-icon { font-size: 14px; line-height: 1; }

/* === PROBLEM === */
.problem { text-align: center; }
.problem-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
}
.problem-title em { font-style: normal; color: var(--blue); display: block; }
.problem-body {
  max-width: 56ch;
  margin: 24px auto 0;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* === CARD GRID (4-card features) === */
.card-grid { display: grid; gap: 20px; }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .card-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .card-grid-4 { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 28px 24px;
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.feature-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -10px rgba(11, 18, 32, 0.10);
}
.feature-icon {
  width: 44px; height: 44px;
  background: var(--blue-soft);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* === HOW (3-step timeline) === */
.how-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.how-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 14%;
  right: 14%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}
@media (max-width: 768px) {
  .how-timeline { grid-template-columns: 1fr; gap: 32px; }
  .how-timeline::before { display: none; }
}
.how-step { position: relative; z-index: 1; }
.how-num {
  display: inline-flex;
  width: 56px; height: 56px;
  background: var(--white);
  border: 2px solid var(--blue);
  color: var(--blue);
  border-radius: 50%;
  align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
}
.how-step h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.how-step p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 30ch;
}

/* === FEATURED REBUILDS === */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .featured-grid { grid-template-columns: 1fr; } }

.featured-card {
  display: block;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--white);
  transition: border-color .15s, transform .15s, box-shadow .15s;
}
.featured-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 18px 32px -10px rgba(11, 18, 32, 0.12);
}

.featured-screenshot {
  aspect-ratio: 16/10;
  background: var(--gray-50);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.featured-screenshot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.screenshot-fallback-label {
  display: none;
  font-size: 24px; font-weight: 700; color: var(--ink-muted); letter-spacing: -0.01em;
}
.featured-screenshot.screenshot-fallback {
  background: linear-gradient(135deg, #F7F9FB 0%, #E5E9F0 100%);
}
.featured-screenshot.screenshot-fallback .screenshot-fallback-label { display: block; }

.featured-meta { padding: 22px 22px 24px; }
.featured-meta h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.featured-meta p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 14px;
}
.featured-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-muted);
  text-transform: uppercase;
  font-weight: 600;
}

/* === COMPARE TABLE === */
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--r-md);
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.compare-table {
  width: 100%;
  min-width: 760px;
  font-size: 14px;
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: middle;
}
.compare-table thead th {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  background: var(--gray-50);
  letter-spacing: -0.005em;
}
.th-sub {
  display: block;
  font-weight: 400;
  color: var(--ink-muted);
  font-size: 12px;
  margin-top: 4px;
  letter-spacing: 0;
}
.compare-table tbody td { color: var(--ink-soft); }
.compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--ink);
}
.compare-self {
  background: var(--blue-soft);
  color: var(--ink) !important;
  font-weight: 600;
}
.compare-table thead th.compare-self {
  background: var(--blue);
  color: #fff !important;
}
.compare-table thead th.compare-self .th-sub {
  color: rgba(255, 255, 255, 0.78);
}
.compare-table tbody tr:last-child td { border-bottom: 0; }

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 20px; max-width: 480px; margin: 0 auto; }
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color .15s, transform .15s;
}
.pricing-card:hover { border-color: var(--blue); }

.pricing-card-featured {
  border: 2px solid var(--blue);
  transform: translateY(-8px);
  box-shadow: 0 24px 48px -16px rgba(44, 91, 255, 0.20);
}
@media (max-width: 1024px) {
  .pricing-card-featured { transform: none; }
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.pricing-tagline {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.pricing-price { margin-bottom: 28px; }
.pricing-price .anchor {
  color: var(--ink-muted);
  font-size: 16px;
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 1.5px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 4px;
}
.price-row {
  display: flex; align-items: baseline; gap: 4px;
}
.price-row .dollar {
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
}
.price-row .amount {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
}
.discount-badge {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
  margin-top: 10px;
  text-transform: uppercase;
}

.pricing-features {
  flex: 1;
  margin-bottom: 24px;
}
.pricing-features li {
  font-size: 14px;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--ink);
  line-height: 1.5;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}
.pricing-features li.feature-emphasized {
  font-weight: 700;
  padding-left: 0;
  color: var(--ink);
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: 12px;
  margin-bottom: 8px;
}
.pricing-features li.feature-emphasized::before { display: none; }

.pricing-fineprint {
  margin-top: 36px;
  font-size: 13px;
  color: var(--ink-muted);
  text-align: center;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
  line-height: 1.55;
}

/* === HONEST STRIP === */
.honest-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}
@media (max-width: 768px) {
  .honest-strip { grid-template-columns: 1fr; gap: 32px; }
}
.honest-block {
  padding: 12px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.honest-block:last-child { border-right: 0; }
@media (max-width: 768px) {
  .honest-block { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); padding-bottom: 32px; }
  .honest-block:last-child { border-bottom: 0; padding-bottom: 0; }
}
.honest-block strong {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 12px;
  color: #fff;
}
.honest-block-accent strong { color: var(--blue); }
.honest-block span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 26ch;
  margin: 0 auto;
  display: block;
  line-height: 1.5;
}

/* === FAQ === */
.faq-list li { border-bottom: 1px solid var(--gray-200); }
.faq-list li:first-child { border-top: 1px solid var(--gray-200); }

.faq-list summary {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  cursor: pointer;
  list-style: none;
  gap: 16px;
  transition: color .15s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::marker { display: none; }
.faq-list summary:hover { color: var(--blue); }

.faq-q {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.4;
}
.faq-toggle {
  display: inline-block;
  font-size: 22px;
  font-weight: 300;
  color: var(--ink-muted);
  text-align: right;
  line-height: 1;
}
.faq-toggle::before { content: '+'; }
details[open] .faq-toggle::before { content: '−'; }
details[open] .faq-q { color: var(--blue); }

.faq-list details > p {
  padding: 0 0 24px 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* === BOOK / Calendly === */
.book-fallback {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-muted);
}
.book-fallback a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 6px;
  font-weight: 500;
}

/* === FOOTER === */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 64px;
  padding-bottom: 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 3fr);
  gap: 64px;
  padding-bottom: 56px;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 40px; padding-bottom: 32px; }
  .site-footer { padding-top: 48px; }
}
.footer-tagline {
  margin-top: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  max-width: 32ch;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
.footer-col-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.46);
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col a, .footer-col .lang-btn {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 8px;
  text-align: left;
  padding: 0;
  font-family: var(--sans);
  transition: color .15s;
}
.footer-col a:hover, .footer-col .lang-btn:hover { color: #fff; }
.lang-btn-soon { color: rgba(255, 255, 255, 0.4) !important; }

.footer-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-sep { color: rgba(255, 255, 255, 0.3); margin: 0 8px; }
@media (max-width: 768px) {
  .footer-meta { flex-direction: column; gap: 6px; }
  .footer-sep { display: none; }
}

/* === LEGAL PAGES === */
.legal-page {
  background: var(--gray-50);
}
.legal-main {
  padding: 88px var(--gutter-d);
}
.legal-doc {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 56px;
  box-shadow: 0 20px 50px -28px rgba(11, 18, 32, 0.20);
}
.legal-doc h1 {
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--ink);
}
.legal-updated,
.legal-muted {
  color: var(--ink-muted);
  font-size: 14px;
}
.legal-updated {
  margin-top: 12px;
  margin-bottom: 36px;
}
.legal-doc h2 {
  margin-top: 32px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.legal-doc p {
  margin-top: 10px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.legal-doc a:not(.btn) {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .legal-main {
    padding: 56px var(--gutter-m);
  }
  .legal-doc {
    padding: 32px 24px;
  }
}
