:root {
  --ink: #111827;
  --ink-soft: #344054;
  --muted: #667085;
  --line: rgba(17, 24, 39, 0.09);
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --canvas: #f5f7fb;
  --brand: #1769e0;
  --brand-deep: #143cb6;
  --brand-bright: #46c8ff;
  --brand-pale: #eaf3ff;
  --success: #079455;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.04), 0 8px 24px rgba(16, 24, 40, 0.05);
  --shadow-lg: 0 28px 80px rgba(20, 60, 182, 0.17);
  --radius-md: 20px;
  --radius-lg: 30px;
  --page: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% -5%, rgba(70, 200, 255, 0.12), transparent 28rem),
    radial-gradient(circle at 92% 8%, rgba(23, 105, 224, 0.09), transparent 30rem),
    var(--canvas);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Inter, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--brand);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--brand-deep);
}

a:focus-visible {
  outline: 3px solid rgba(70, 200, 255, 0.48);
  outline-offset: 4px;
  border-radius: 6px;
}

.shell {
  width: min(calc(100% - 40px), var(--page));
  margin-inline: auto;
}

.site-nav {
  position: relative;
  z-index: 10;
  padding: 22px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-link:hover {
  color: var(--ink);
}

.brand-link img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  box-shadow: 0 8px 20px rgba(23, 105, 224, 0.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 14px;
  color: var(--ink-soft);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
}

.nav-links .nav-cta {
  margin-left: 6px;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 8px 18px rgba(23, 105, 224, 0.24);
}

.nav-links .nav-cta:hover {
  color: #fff;
  background: var(--brand-deep);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 72px;
}

.hero::before {
  position: absolute;
  inset: 3% -12% auto auto;
  width: 34rem;
  height: 34rem;
  border: 1px solid rgba(23, 105, 224, 0.09);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(23, 105, 224, 0.025), 0 0 0 160px rgba(70, 200, 255, 0.018);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 80px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  padding: 7px 12px 7px 8px;
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 105, 224, 0.12);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 700;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(7, 148, 85, 0.1);
  content: "";
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(54px, 7.2vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(115deg, var(--brand) 5%, var(--brand-deep) 52%, #14318a);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero .tag {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.hero .sub {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.hero .sub > span:not(.separator) {
  display: inline-flex;
  align-items: center;
}

.hero .sub .separator {
  color: var(--brand-bright);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-top: 32px;
}

.hero-secondary {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

.hero-secondary:hover {
  color: var(--brand-deep);
  text-decoration: underline;
}

/* App Store badge (custom-drawn, matches Apple's black badge proportions) */
.appstore-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 8px 18px 8px 14px;
  color: #fff;
  background: #0b0b0f;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 13px;
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.22);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.appstore-badge:hover {
  color: #fff;
  background: #17171d;
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.28);
  transform: translateY(-1px);
}

.appstore-badge:active {
  transform: translateY(0);
}

.appstore-badge .apple-mark {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  fill: currentColor;
}

.appstore-badge .badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-align: left;
}

.appstore-badge small {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.85;
}

.appstore-badge strong {
  font-size: 20px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.appstore-badge-lg {
  min-height: 60px;
  padding: 10px 22px 10px 16px;
  border-radius: 15px;
}

.appstore-badge-lg .apple-mark {
  width: 30px;
  height: 30px;
}

.appstore-badge-lg strong {
  font-size: 23px;
}

.product-visual {
  position: relative;
  min-height: 470px;
}

.visual-glow {
  position: absolute;
  inset: 12% 4% 5%;
  background: linear-gradient(150deg, rgba(70, 200, 255, 0.45), rgba(23, 105, 224, 0.52) 48%, rgba(20, 60, 182, 0.8));
  border-radius: 42px;
  filter: blur(12px);
  opacity: 0.52;
  transform: rotate(5deg);
}

.phone-card {
  position: absolute;
  inset: 0 28px 0 54px;
  overflow: hidden;
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(70, 200, 255, 0.36), transparent 40%),
    linear-gradient(150deg, #102a74 0%, #164bc3 50%, #1769e0 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 42px;
  box-shadow: var(--shadow-lg);
  transform: rotate(2.5deg);
}

.phone-card::after {
  position: absolute;
  inset: auto -20% -40% 8%;
  height: 75%;
  background: rgba(70, 200, 255, 0.22);
  border-radius: 50%;
  filter: blur(30px);
  content: "";
}

.phone-top,
.metric-card,
.flow-card {
  position: relative;
  z-index: 1;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-top img {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.privacy-chip {
  padding: 7px 11px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
  backdrop-filter: blur(14px);
}

.metric-card {
  margin-top: 38px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  backdrop-filter: blur(18px);
}

.metric-label {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.metric-title {
  margin: 7px 0 0;
  font-size: 28px;
  font-weight: 750;
  letter-spacing: -0.04em;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  margin-top: 26px;
}

.chart-bars i {
  flex: 1;
  min-height: 20%;
  background: linear-gradient(180deg, #9ee9ff, rgba(255, 255, 255, 0.24));
  border-radius: 7px 7px 3px 3px;
}

.chart-bars i:nth-child(1) { height: 35%; }
.chart-bars i:nth-child(2) { height: 52%; }
.chart-bars i:nth-child(3) { height: 43%; }
.chart-bars i:nth-child(4) { height: 72%; }
.chart-bars i:nth-child(5) { height: 62%; }
.chart-bars i:nth-child(6) { height: 88%; }
.chart-bars i:nth-child(7) { height: 76%; }

.flow-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 15px 17px;
  background: rgba(7, 21, 65, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

.flow-card strong {
  display: block;
  font-size: 13px;
}

.flow-card small {
  display: block;
  margin-top: 1px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
}

.status-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  background: #6cf0b5;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(108, 240, 181, 0.12);
}

.floating-label {
  position: absolute;
  z-index: 3;
  right: -2px;
  bottom: 62px;
  padding: 13px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(16, 24, 40, 0.14);
  font-size: 12px;
  font-weight: 720;
  backdrop-filter: blur(16px);
}

.content-section {
  padding: 72px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.section-intro {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.feature-card:first-child {
  grid-column: 1 / -1;
  padding: 34px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(234, 243, 255, 0.92));
}

.feature-card::before {
  display: block;
  width: 38px;
  height: 4px;
  margin-bottom: 24px;
  background: linear-gradient(90deg, var(--brand-bright), var(--brand));
  border-radius: 999px;
  content: "";
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.feature-card:first-child p {
  max-width: 850px;
  color: var(--ink-soft);
  font-size: 18px;
}

.privacy-section {
  margin: 36px 0 74px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 10%, rgba(70, 200, 255, 0.3), transparent 29rem),
    linear-gradient(145deg, #0c235e 0%, #103ca3 52%, #1769e0 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.privacy-inner {
  padding: clamp(34px, 5vw, 64px);
}

.privacy-section .section-kicker {
  color: #9ee9ff;
}

.privacy-section h2 {
  max-width: 720px;
  margin: 0 0 32px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps-list li {
  position: relative;
  padding: 20px 20px 20px 64px;
  color: rgba(255, 255, 255, 0.79);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 15px;
  counter-increment: steps;
}

.steps-list li::before {
  position: absolute;
  top: 18px;
  left: 8px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 11px;
  font-size: 12px;
  font-weight: 750;
  content: "0" counter(steps);
}

.steps-list strong {
  color: #fff;
}

.steps-list a,
.privacy-section > * a {
  color: #b8eeff;
}

.privacy-more {
  margin: 10px 0 0 64px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

/* Download section — App Store link + QR code */
.download-section {
  padding-top: 0;
  scroll-margin-top: 24px;
}

.download-card {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  gap: 48px;
  align-items: center;
  padding: clamp(30px, 4.5vw, 56px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(234, 243, 255, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(18px);
}

.download-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.download-intro {
  max-width: 560px;
  margin: 18px 0 26px;
  color: var(--ink-soft);
  font-size: 17px;
}

.download-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  justify-self: center;
  padding: 22px 22px 20px;
  color: var(--ink);
  background: var(--surface-solid);
  border: 1px solid rgba(23, 105, 224, 0.12);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(20, 60, 182, 0.14);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.qr-card:hover {
  color: var(--ink);
  box-shadow: 0 22px 52px rgba(20, 60, 182, 0.2);
  transform: translateY(-2px);
}

.qr-image {
  display: block;
  width: 196px;
  height: 196px;
  border-radius: 12px;
}

.qr-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.qr-caption strong {
  font-size: 14px;
  letter-spacing: -0.01em;
}

.qr-caption small {
  color: var(--muted);
  font-size: 12px;
}

.site-footer {
  padding: 24px 0 50px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-top: 28px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.footer-links {
  white-space: nowrap;
}

.footer-links a {
  margin-right: 8px;
  margin-left: 8px;
  font-weight: 650;
  text-decoration: none;
}

.footer-links a:first-child {
  margin-left: 0;
}

.footer-legal {
  max-width: 650px;
  margin: 0;
  text-align: right;
}

/* Legal pages */
.legal-page {
  background:
    radial-gradient(circle at 50% -12%, rgba(70, 200, 255, 0.14), transparent 36rem),
    var(--canvas);
}

.legal-hero {
  padding: 58px 0 64px;
  text-align: center;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(46px, 7vw, 76px);
  line-height: 1;
  letter-spacing: -0.065em;
}

.legal-hero .date {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  align-items: start;
  padding-bottom: 84px;
}

.legal-article {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(16, 24, 40, 0.07);
}

.legal-lead {
  padding: 38px 42px;
  color: var(--ink-soft);
  background: linear-gradient(135deg, rgba(234, 243, 255, 0.68), rgba(255, 255, 255, 0.12));
  border-bottom: 1px solid var(--line);
  font-size: 17px;
}

.legal-lead p {
  margin: 0;
}

.legal-section {
  padding: 34px 42px;
  border-bottom: 1px solid var(--line);
}

.legal-section:last-child {
  border-bottom: 0;
}

.legal-section h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.legal-section p,
.legal-section li {
  color: var(--ink-soft);
  font-size: 15px;
}

.legal-section p {
  margin: 0 0 14px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul {
  margin: 8px 0 0;
  padding-left: 22px;
}

.legal-section li + li {
  margin-top: 9px;
}

.legal-section code {
  padding: 2px 7px;
  color: var(--brand-deep);
  background: var(--brand-pale);
  border: 1px solid rgba(23, 105, 224, 0.08);
  border-radius: 7px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
}

.note {
  position: relative;
  margin: 0;
  padding: 22px 22px 22px 60px;
  color: var(--ink-soft);
  background: var(--brand-pale);
  border: 1px solid rgba(23, 105, 224, 0.1);
  border-radius: 17px;
  font-size: 14px;
}

.note::before {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 22px;
  height: 22px;
  background: radial-gradient(circle, #fff 0 18%, transparent 20%), var(--brand);
  border-radius: 50%;
  box-shadow: 0 5px 14px rgba(23, 105, 224, 0.24);
  content: "";
}

.legal-footer {
  padding: 0 0 44px;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

.legal-footer a {
  font-weight: 650;
  text-decoration: none;
}

@media (max-width: 900px) {
  .hero {
    padding-top: 32px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

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

  .hero h1,
  .hero .tag {
    margin-inline: auto;
  }

  .hero .sub {
    justify-content: center;
  }

  .product-visual {
    width: min(100%, 480px);
    margin-inline: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-actions {
    justify-content: center;
  }

  .download-card {
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }

  .download-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .download-intro {
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 28px), var(--page));
  }

  .site-nav {
    padding: 14px 0;
  }

  .brand-link span {
    display: none;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links a {
    padding: 9px 10px;
    font-size: 13px;
  }

  .hero {
    padding: 35px 0 48px;
  }

  .hero h1 {
    font-size: clamp(50px, 18vw, 70px);
  }

  .hero .tag {
    margin-top: 22px;
    font-size: 17px;
  }

  .hero .sub {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .hero .sub .separator {
    display: none;
  }

  .product-visual {
    min-height: 405px;
  }

  .phone-card {
    inset: 0 12px;
    padding: 23px;
    border-radius: 32px;
  }

  .metric-card {
    margin-top: 26px;
  }

  .floating-label {
    right: 0;
    bottom: 34px;
  }

  .content-section {
    padding: 52px 0;
  }

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

  .feature-card:first-child {
    grid-column: auto;
  }

  .feature-card,
  .feature-card:first-child {
    padding: 25px;
  }

  .feature-card:first-child p {
    font-size: 16px;
  }

  .privacy-section {
    margin-top: 18px;
    border-radius: 24px;
  }

  .steps-list li {
    padding-right: 0;
    padding-left: 50px;
  }

  .steps-list li::before {
    left: 0;
  }

  .privacy-more {
    margin-left: 50px;
  }

  .nav-links .nav-cta {
    margin-left: 4px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 26px;
  }

  .download-card {
    padding: 26px 20px;
    border-radius: 24px;
  }

  .download-intro {
    font-size: 16px;
  }

  .qr-card {
    width: 100%;
    max-width: 300px;
  }

  .qr-image {
    width: 180px;
    height: 180px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-legal {
    text-align: left;
  }

  .legal-hero {
    padding: 38px 0 46px;
  }

  .legal-layout {
    padding-bottom: 52px;
  }

  .legal-article {
    border-radius: 22px;
  }

  .legal-lead,
  .legal-section {
    padding: 28px 24px;
  }

  .note {
    padding: 56px 20px 20px;
  }
}

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

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


/* Disclosure table — Google user data recipients (privacy policy) */
.legal-table {
  border-collapse: collapse;
  width: 100%;
  margin: 16px 0;
  font-size: 0.95rem;
}
.legal-table th,
.legal-table td {
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.legal-table th {
  background: rgba(29, 120, 242, 0.06);
  font-weight: 600;
}
@media (max-width: 620px) {
  .legal-table,
  .legal-table tbody,
  .legal-table tr,
  .legal-table td {
    display: block;
    width: 100%;
  }
  .legal-table thead { display: none; }
  .legal-table tr { margin-bottom: 12px; }
}


/* Deep links from the OAuth verification thread land on these headings —
   give the anchor jump some breathing room above the title. */
.legal-section h2[id] {
  scroll-margin-top: 24px;
}
