:root {
  --tp-bg: #eef3f9;
  --tp-surface: #ffffff;
  --tp-surface-alt: #f7f9fc;
  --tp-surface-soft: #f2f5fa;
  --tp-border: #d7dfeb;
  --tp-border-strong: #c3d0e2;
  --tp-text: #152238;
  --tp-text-soft: #5f6f86;
  --tp-text-faint: #7b8ba3;
  --tp-primary: #1a73e8;
  --tp-primary-dark: #0f52ba;
  --tp-primary-soft: #e8f0fe;
  --tp-primary-border: #c8dafc;
  --tp-white: #ffffff;
  --tp-shadow: 0 20px 40px rgba(17, 34, 68, 0.08);
  --tp-shadow-soft: 0 12px 24px rgba(17, 34, 68, 0.06);
  --tp-radius-xl: 24px;
  --tp-radius-lg: 18px;
  --tp-radius-md: 14px;
  --tp-radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--tp-text);
  background: var(--tp-bg);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  font: inherit;
}

.shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 88px 0;
}

.section-white {
  background: var(--tp-surface);
}

.section-tint {
  background: linear-gradient(180deg, #f9fbff 0%, #f3f7fd 100%);
}

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

.section-heading {
  margin-bottom: 28px;
  max-width: 760px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading.narrow {
  max-width: 680px;
}

.section-heading h2,
.hero h1,
.final-cta-card h2,
.hero-card h2 {
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.section-heading h2 {
  font-size: clamp(32px, 4vw, 48px);
  text-wrap: balance;
}

.section-heading p,
.hero-copy,
.sample-caption,
.final-cta-card p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--tp-text-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(238, 243, 249, 0.96);
  border-bottom: 1px solid rgba(215, 223, 235, 0.92);
  backdrop-filter: blur(10px);
}

.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-mark {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand-trace {
  color: #1c1e21;
}

.brand-proof {
  color: #7e848c;
}

.nav-links,
.nav-actions,
.nav-verify {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-verify {
  margin-left: auto;
  gap: 14px;
}

.verify-mode-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--tp-border);
  background: var(--tp-surface);
  border-radius: 999px;
}

.verify-mode-button {
  border: 0;
  background: transparent;
  color: var(--tp-text-soft);
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.verify-mode-button.is-active {
  background: var(--tp-primary-soft);
  color: var(--tp-primary-dark);
}

.verify-pane {
  display: none;
  align-items: center;
}

.verify-pane.is-active {
  display: flex;
}

.verify-image-link {
  white-space: nowrap;
}

.nav-links a,
.nav-link-light,
.mobile-actions a,
.mobile-nav-list a,
.site-footer a {
  color: var(--tp-text-soft);
}

.nav-links a:hover,
.nav-link-light:hover,
.mobile-actions a:hover,
.mobile-nav-list a:hover,
.site-footer a:hover {
  color: var(--tp-primary-dark);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  border: 1px solid var(--tp-border);
  background: var(--tp-surface);
  color: var(--tp-text);
  border-radius: 12px;
  padding: 10px 14px;
}

.nav-verify-label,
.mobile-verify-label {
  color: var(--tp-text-soft);
  font-weight: 700;
  white-space: nowrap;
}

.verify-form {
  display: flex;
  align-items: center;
}

.verify-input-shell {
  display: flex;
  align-items: center;
  width: 148px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--tp-border);
  background: var(--tp-surface);
  padding: 0 5px 0 0;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.verify-input-shell:focus-within {
  border-color: var(--tp-primary);
  box-shadow: 0 0 0 3px rgba(26, 115, 232, 0.14);
}

.verify-input {
  width: 100%;
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  color: var(--tp-text);
  padding: 0 14px;
  font: inherit;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.verify-input::placeholder {
  color: transparent;
}

.verify-input:focus {
  outline: none;
}

.verify-submit {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: var(--tp-primary);
  color: var(--tp-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.verify-submit:disabled {
  background: var(--tp-border-strong);
}

.verify-form.has-value .verify-submit {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.verify-form.is-complete .verify-submit:not(:disabled) {
  background: var(--tp-primary);
  cursor: pointer;
}

.mobile-verify-block {
  display: grid;
  gap: 12px;
}

.verify-mode-toggle-mobile {
  width: fit-content;
}

.verify-image-link-mobile {
  width: fit-content;
}

.mobile-menu {
  border-top: 1px solid var(--tp-border);
  background: var(--tp-surface);
}

.mobile-menu-inner {
  padding-top: 16px;
  padding-bottom: 20px;
}

.mobile-nav-list,
.mobile-actions {
  display: grid;
  gap: 12px;
}

.mobile-actions {
  margin-top: 18px;
}

.desktop-only {
  display: flex;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  padding: 14px 20px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-small {
  padding: 11px 16px;
  border-radius: 12px;
}

.button-primary {
  background: var(--tp-primary);
  color: var(--tp-white);
  box-shadow: var(--tp-shadow-soft);
}

.button-primary:hover {
  background: var(--tp-primary-dark);
}

.button-secondary {
  background: var(--tp-surface);
  border-color: var(--tp-border);
  color: var(--tp-text);
}

.button-secondary:hover {
  background: var(--tp-surface-alt);
  border-color: var(--tp-border-strong);
}

.button-white {
  background: var(--tp-white);
  color: var(--tp-primary-dark);
}

.button-outline-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--tp-white);
}

.hero {
  padding-top: 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-note,
.section-footnote,
.sample-caption,
.callout-card p:last-child {
  color: var(--tp-text-soft);
}

.hero-note,
.section-footnote {
  margin-top: 16px;
  font-size: 14px;
}

.hero-card-wrap {
  position: relative;
}

.hero-card {
  background: var(--tp-surface);
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-radius-xl);
  overflow: hidden;
  box-shadow: var(--tp-shadow);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: #f8fbff;
  border-bottom: 1px solid var(--tp-border);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #c8dafc;
}

.browser-bar {
  margin-left: 8px;
  flex: 1;
  min-width: 0;
  border-radius: 999px;
  border: 1px solid var(--tp-border);
  background: var(--tp-surface);
  color: var(--tp-text-faint);
  font-size: 12px;
  padding: 8px 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-card-body {
  padding: 28px;
}

.status-badge,
.pricing-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--tp-primary-soft);
  border: 1px solid var(--tp-primary-border);
  color: var(--tp-primary-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-card h2 {
  font-size: clamp(28px, 3vw, 38px);
  margin-top: 18px;
  text-wrap: balance;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.stat-grid article,
.attestation-card,
.info-card,
.step-card,
.audience-card,
.pricing-card,
.callout-card,
.faq-list details {
  background: var(--tp-surface);
  border: 1px solid var(--tp-border);
  border-radius: var(--tp-radius-lg);
  box-shadow: var(--tp-shadow-soft);
}

.stat-grid article {
  padding: 16px;
}

.stat-grid span,
.attestation-card span,
.pricing-card p,
.site-footer h3 {
  display: block;
  color: var(--tp-text-faint);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-grid strong,
.attestation-card strong {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.5;
}

.attestation-card {
  margin-top: 16px;
  padding: 18px;
  background: #fbfcff;
}

.card-grid,
.steps-grid,
.audience-grid,
.pricing-grid,
.footer-grid,
.sample-grid {
  display: grid;
  gap: 20px;
}

.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.question-grid {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

.info-card {
  padding: 22px;
}

.info-card h3,
.step-card h3,
.audience-card h2,
.pricing-card h3,
.callout-card h2,
.final-cta-card h2 {
  margin: 0;
  letter-spacing: -0.02em;
}

.info-card h3 {
  font-size: 20px;
}

.info-card p,
.step-card p,
.audience-card p,
.pricing-card p,
.callout-card p,
.faq-list p,
.site-footer p {
  color: var(--tp-text-soft);
  line-height: 1.65;
}

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

.step-card {
  padding: 28px;
}

.step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--tp-primary);
  color: var(--tp-white);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 18px;
}

.section-footnote {
  font-weight: 600;
}

.section-footnote.center {
  text-align: center;
}

.sample-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
}

.feature-list,
.check-list,
.pricing-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list,
.check-list {
  display: grid;
  gap: 12px;
}

.feature-list li,
.check-list li,
.pricing-card li {
  position: relative;
  padding-left: 26px;
  line-height: 1.55;
}

.feature-list li::before,
.check-list li::before,
.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--tp-primary);
}

.sample-frame {
  background: linear-gradient(180deg, #f9fbff 0%, #edf3fb 100%);
  padding: 16px;
  border-radius: var(--tp-radius-xl);
  border: 1px solid var(--tp-border);
  box-shadow: var(--tp-shadow);
}

.sample-frame img {
  border-radius: 16px;
  border: 1px solid var(--tp-border);
}

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

.audience-card {
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.audience-card .button {
  margin-top: 10px;
  align-self: flex-start;
}

.audience-card-accent {
  background: linear-gradient(180deg, #1a73e8 0%, #145fc2 100%);
  color: var(--tp-white);
  border-color: transparent;
}

.audience-card-accent p,
.audience-card-accent .eyebrow,
.audience-card-accent .check-list li {
  color: rgba(255, 255, 255, 0.92);
}

.check-list.light li::before {
  background: rgba(255, 255, 255, 0.9);
}

.demo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.demo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
}

.demo-card-primary {
  background: linear-gradient(180deg, #f7faff 0%, #eef4fd 100%);
}

.demo-card-number {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--tp-primary-soft);
  color: var(--tp-primary-dark);
  font-size: 16px;
  font-weight: 800;
}

.demo-check-list {
  margin-top: 4px;
}

.demo-card-actions {
  margin-top: auto;
  padding-top: 8px;
}

.callout-shell {
  display: flex;
  justify-content: center;
}

.callout-card {
  padding: 40px;
  max-width: 920px;
  background: linear-gradient(180deg, #f7faff 0%, #eef4fd 100%);
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.pricing-card {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card-featured {
  border: 2px solid var(--tp-primary);
}

.price-row {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.price-row span {
  font-size: 14px;
  font-weight: 600;
  color: var(--tp-text-soft);
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  flex: 1;
}

.faq-shell {
  max-width: 860px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin: 14px 0 0;
}

.final-cta {
  padding-top: 40px;
}

.final-cta-card {
  background: linear-gradient(135deg, #1a73e8 0%, #0f52ba 100%);
  color: var(--tp-white);
  border-radius: 32px;
  padding: 52px 36px;
  text-align: center;
  box-shadow: var(--tp-shadow);
}

.final-cta-card p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 760px;
  margin: 18px auto 0;
}

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

.site-footer {
  border-top: 1px solid var(--tp-border);
  background: #f8fbff;
  padding: 40px 0 48px;
}

.footer-grid {
  grid-template-columns: 1.6fr repeat(3, minmax(0, 1fr));
}

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

.site-footer h3 {
  margin: 0 0 14px;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .sample-grid,
  .four-up,
  .three-up,
  .pricing-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 800px) {
  .desktop-only {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .sample-grid,
  .four-up,
  .three-up,
  .pricing-grid,
  .footer-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 32px;
  }

  .hero-card-body,
  .audience-card,
  .callout-card,
  .final-cta-card {
    padding: 26px;
  }

  .shell {
    padding: 0 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .verify-form-mobile {
    flex-direction: column;
    align-items: stretch;
  }

  .verify-input {
    width: 100%;
  }
}


@media (max-width: 900px) {
  .demo-grid {
    grid-template-columns: 1fr;
  }
}

.chat-widget {
  --tp-chat-min-width: 430px;
  --tp-chat-shell-gap: 16px;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.chat-widget-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--tp-primary-border);
  background: var(--tp-primary);
  color: var(--tp-white);
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 700;
  box-shadow: 0 18px 32px rgba(26, 115, 232, 0.28);
  cursor: pointer;
}

.chat-widget-toggle:hover {
  background: var(--tp-primary-dark);
  transform: translateY(-1px);
}

.chat-widget-toggle-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  font-size: 18px;
}

.chat-widget-panel {
  width: min(calc(var(--tp-chat-min-width) + (var(--tp-chat-shell-gap) * 2)), calc(100vw - 32px));
  min-width: min(calc(var(--tp-chat-min-width) + (var(--tp-chat-shell-gap) * 2)), calc(100vw - 32px));
  height: min(720px, calc(100vh - 110px));
  background: transparent;
  border: 0;
  border-radius: 24px;
  box-shadow: none;
  overflow: visible;
  flex-direction: column;
  overscroll-behavior: contain;
}

.chat-widget-panel:not([hidden]) {
  display: flex;
}

.chat-widget-panel[hidden] {
  display: none !important;
}

.chat-widget-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 16px;
  border-bottom: 1px solid var(--tp-border);
  background: linear-gradient(180deg, #f9fbff 0%, #f3f7fd 100%);
}

.chat-widget-kicker {
  margin: 0 0 6px;
  color: var(--tp-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chat-widget-header h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.chat-widget-close {
  border: 1px solid var(--tp-border);
  background: var(--tp-surface);
  color: var(--tp-text-soft);
  width: 34px;
  height: 34px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.chat-widget-close:hover {
  background: var(--tp-surface-alt);
  color: var(--tp-text);
}

.chat-widget-frame-wrap {
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  padding: 8px;
  background: #dfe6ef;
  border: 1px solid var(--tp-border);
  box-shadow: 0 28px 56px rgba(17, 34, 68, 0.18);
  overflow: hidden;
  overscroll-behavior: contain;
  border-radius: inherit;
}

.chat-widget-frame {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  display: block;
  background: var(--tp-surface);
  border-radius: 18px;
  overflow: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable both-edges;
}

body.chat-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  .chat-widget {
    right: 16px;
    bottom: 16px;
    left: 16px;
    align-items: stretch;
  }

  .chat-widget-toggle {
    justify-content: center;
  }

  .chat-widget-panel {
    width: 100%;
    min-width: 0;
    height: min(78vh, 680px);
  }

  .chat-widget-frame-wrap {
    padding: 8px;
  }

  .chat-widget-toggle-text {
    display: inline;
  }
}


.chat-widget-header {
  display: none !important;
}


.use-case-grid {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.use-case-copy {
  display: grid;
  gap: 20px;
}

.use-case-copy .section-heading {
  margin-bottom: 0;
}

.use-case-copy p {
  margin: 0;
}

.use-case-frame img {
  width: 100%;
  height: auto;
}

@media (max-width: 1100px) {
  .use-case-grid {
    grid-template-columns: 1fr;
  }
}

.verify-form-header .verify-input-shell {
  width: 176px;
}

.verify-form-mobile .verify-input-shell {
  width: min(100%, 220px);
}


.footer-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.footer-link-button {
  display: block;
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--tp-text-soft);
  cursor: pointer;
  text-align: left;
}

.footer-link-button:hover {
  color: var(--tp-primary-dark);
}

.legal-modal-open {
  overflow: hidden;
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
}

.legal-modal[hidden] {
  display: none;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 34, 56, 0.6);
  backdrop-filter: blur(4px);
}

.legal-modal-panel {
  position: relative;
  width: min(760px, 100%);
  max-height: min(80vh, 900px);
  overflow: auto;
  padding: 32px;
  border-radius: 28px;
  background: var(--tp-surface);
  border: 1px solid var(--tp-border);
  box-shadow: var(--tp-shadow);
}

.legal-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--tp-border);
  border-radius: 999px;
  background: var(--tp-surface-soft);
  color: var(--tp-text);
  cursor: pointer;
}

.legal-modal-close:hover {
  border-color: var(--tp-primary-border);
  color: var(--tp-primary-dark);
}

.legal-modal-eyebrow {
  margin-bottom: 8px;
}

.legal-modal-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 38px);
  letter-spacing: -0.03em;
}

.legal-modal-body {
  color: var(--tp-text-soft);
  line-height: 1.7;
}

.legal-modal-body h3 {
  margin: 24px 0 10px;
  color: var(--tp-text);
  font-size: 18px;
}

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

.legal-modal-body ul {
  margin: 0;
  padding-left: 20px;
}

.legal-modal-body li + li {
  margin-top: 8px;
}

.legal-modal-body a {
  color: var(--tp-primary-dark);
  text-decoration: underline;
}

@media (max-width: 800px) {
  .legal-modal {
    padding: 16px;
  }

  .legal-modal-panel {
    padding: 24px 20px;
    border-radius: 22px;
  }
}


.verify-submit span {
  line-height: 1;
}
