:root {
  /* Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --border-subtle: #e2e8f0;
  --border-accent: #cbd5e1;

  --text-heading: #0f172a;
  --text-body: #475569;
  --text-muted: #64748b;

  --accent-blue: #3b82f6;
  --accent-blue-dim: rgba(59, 130, 246, 0.12);
  --accent-purple: #8b5cf6;
  --accent-purple-dim: rgba(139, 92, 246, 0.12);
  --accent-green: #10b981;
  --accent-red: #ef4444;
  --accent-amber: #f59e0b;

  /* Typography */
  --font-heading: 'Satoshi', system-ui, -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', 'Fira Code', monospace;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --container-max: 1200px;
  --container-padding: var(--space-6);
  --section-padding: var(--space-24);
  --border-radius: 12px;
  --border-radius-sm: 8px;
  --border-radius-lg: 16px;
  --border-radius-full: 999px;

  /* Animation */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 600ms;
}


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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: auto;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-body);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

table {
  border-collapse: collapse;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
}

h2 {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
}

h3 {
  font-size: clamp(1.125rem, 1.5vw + 0.5rem, 1.375rem);
}

p {
  max-width: 65ch;
}

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
  width: 100%;
}

section {
  padding-block: var(--section-padding);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--border-radius-sm);
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--accent-blue);
  color: #fff;
}

.btn--primary:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--text-body);
  border: 1px solid var(--border-accent);
}

.btn--secondary:hover {
  color: var(--text-heading);
  border-color: var(--text-muted);
  transform: translateY(-1px);
}

.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: 0.8125rem;
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius);
  padding: var(--space-8);
  transition: border-color var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  margin-inline: auto;
  font-size: 1.125rem;
  color: var(--text-muted);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 64px;
  gap: var(--space-8);
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav__logo svg {
  height: 28px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--duration-fast);
}

.nav__links a:hover {
  color: var(--text-heading);
}

.nav__cta {
  justify-self: end;
}

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text-heading);
}

.nav__toggle svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 767px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    padding: var(--space-6);
    gap: var(--space-4);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links a {
    font-size: 1.125rem;
    padding: var(--space-2) 0;
  }

  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }
}

.hero {
  padding-top: var(--space-20);
  padding-bottom: var(--space-24);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  margin-bottom: var(--space-6);
  position: relative;
}

.hero__subhead {
  font-size: clamp(1.0625rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: var(--space-10);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-16);
}

.hero__visual {
  max-width: 900px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--border-radius-lg);
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero__visual-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  color: var(--text-muted);
}

.hero__visual-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.5;
}

.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.05) 0%,
    rgba(139, 92, 246, 0.05) 50%,
    rgba(16, 185, 129, 0.05) 100%
  );
  pointer-events: none;
}

.pain {
  background: var(--bg-secondary);
}

.pain__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.pain__card {
  padding: var(--space-8);
}

.pain__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.pain__icon--red {
  background: rgba(239, 68, 68, 0.1);
  color: var(--accent-red);
}

.pain__icon--amber {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent-amber);
}

.pain__icon--purple {
  background: rgba(139, 92, 246, 0.1);
  color: var(--accent-purple);
}

.pain__icon svg {
  width: 24px;
  height: 24px;
}

.pain__card h3 {
  margin-bottom: var(--space-3);
}

.pain__card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .pain__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-12);
}

.step {
  text-align: center;
  position: relative;
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius-full);
  background: var(--accent-blue-dim);
  color: var(--accent-blue);
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
}

.step h3 {
  margin-bottom: var(--space-3);
}

.step p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-inline: auto;
  max-width: 360px;
  line-height: 1.7;
}

.steps__message {
  text-align: center;
  padding: var(--space-6) var(--space-8);
  background: var(--accent-blue-dim);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--border-radius);
  max-width: 720px;
  margin-inline: auto;
}

.steps__message p {
  color: var(--text-heading);
  font-size: 0.9375rem;
  margin-inline: auto;
  max-width: 100%;
}

@media (min-width: 768px) {
  .steps__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-12);
  }

  .step::after {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(50% + 40px);
    width: calc(100% - 80px);
    height: 1px;
    background: var(--border-subtle);
  }

  .step:last-child::after {
    display: none;
  }
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.feature-card {
  padding: var(--space-8);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-sm);
  background: var(--accent-blue-dim);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.feature-card__icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  margin-bottom: var(--space-2);
  font-size: 1.125rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.7;
}

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

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

.pricing {
  background: var(--bg-secondary);
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.pricing-card {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card--featured {
  border-color: var(--accent-blue);
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.05) 0%, var(--bg-card) 40%);
}

.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-blue);
  color: #fff;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--border-radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: var(--space-2);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--space-1);
  margin-bottom: var(--space-6);
}

.pricing-card__amount {
  font-family: var(--font-mono);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1;
}

.pricing-card__period {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.pricing-card__features {
  flex: 1;
  margin-bottom: var(--space-8);
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: 0.875rem;
  color: var(--text-body);
}

.pricing-card__features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent-green);
}

.pricing__footer {
  text-align: center;
  margin-top: var(--space-12);
  color: var(--text-muted);
  font-size: 0.875rem;
}

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

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

.comparison__wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius);
}

.comparison__table {
  width: 100%;
  min-width: 700px;
  font-size: 0.875rem;
}

.comparison__table thead {
  background: var(--bg-card);
}

.comparison__table th {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-heading);
  font-size: 0.875rem;
  white-space: nowrap;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison__table td {
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--border-subtle);
  white-space: nowrap;
}

.comparison__table tbody tr:last-child td {
  border-bottom: none;
}

.comparison__table th:first-child,
.comparison__table td:first-child {
  position: sticky;
  left: 0;
  background: var(--bg-primary);
  z-index: 1;
  font-weight: 500;
  color: var(--text-body);
}

.comparison__table thead th:first-child {
  background: var(--bg-card);
}

.comparison__table tbody tr:nth-child(even) td:first-child {
  background: var(--bg-secondary);
}

.comparison__table tbody tr:nth-child(even) {
  background: var(--bg-secondary);
}

.comparison__table th:nth-child(2) {
  color: var(--accent-blue);
}

.comparison__table td:nth-child(2) {
  color: var(--text-heading);
  font-weight: 600;
}

.comparison__table .price--competitor {
  color: var(--text-body);
}

.comparison__table .price--owosy {
  color: var(--accent-green);
  font-family: var(--font-mono);
  font-weight: 700;
}

.icon--green {
  color: var(--accent-green);
}

.icon--red {
  color: var(--accent-red);
  opacity: 0.6;
}

.icon--muted {
  color: var(--text-muted);
}

.comparison__table svg {
  width: 18px;
  height: 18px;
}

.comparison__integration-label {
  margin-left: 4px;
}

.comparison__highlight--green {
  color: var(--accent-green);
  font-weight: 700;
}

.comparison__footnote {
  margin-top: var(--space-4);
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 800px;
  margin-inline: auto;
  text-align: center;
}

.pricing__footer--legal {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: var(--space-2);
}

.pricing__footer--legal a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pricing__footer--legal a:hover {
  color: var(--text-body);
}

.faq__list {
  max-width: 800px;
  margin-inline: auto;
}

.faq__item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq__item:first-child {
  border-top: 1px solid var(--border-subtle);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-heading);
  list-style: none;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::marker {
  display: none;
  content: '';
}

.faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform var(--duration-normal) var(--ease-out);
}

.faq__item[open] .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  padding-bottom: var(--space-6);
}

.faq__answer p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.8;
  max-width: 100%;
}

.footer {
  border-top: 1px solid var(--border-subtle);
  padding-block: var(--space-12);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__brand svg {
  height: 24px;
  width: auto;
}

.footer__brand span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.footer__links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--duration-fast);
}

.footer__links a:hover {
  color: var(--text-heading);
}

.footer__bottom {
  padding-top: var(--space-8);
  border-top: 1px solid var(--border-subtle);
  font-size: 0.8125rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .footer__top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.product-card {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.product-card--live {
  text-decoration: none;
  cursor: pointer;
}

.product-card--live:hover {
  border-color: var(--accent-blue);
}

.product-card--soon {
  opacity: 0.7;
}

.product-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__icon svg {
  width: 24px;
  height: 24px;
}

.product-card__icon--blue {
  background: var(--accent-blue-dim);
  color: var(--accent-blue);
}

.product-card__icon--purple {
  background: var(--accent-purple-dim);
  color: var(--accent-purple);
}

.product-card__icon--green {
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-green);
}

.product-card__status {
  font-size: 0.75rem;
  font-weight: 600;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--border-radius-full);
}

.product-card__status--live {
  background: rgba(16, 185, 129, 0.12);
  color: var(--accent-green);
}

.product-card__status--soon {
  background: rgba(148, 163, 184, 0.1);
  color: var(--text-muted);
}

.product-card h3 {
  font-size: 1.25rem;
}

.product-card__title {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.product-card__logo {
  height: 1.4em;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.product-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.product-card__platforms {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.platform-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--border-radius-sm);
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--accent-blue);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: auto;
}

.product-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-normal) var(--ease-out);
}

.product-card--live:hover .product-card__link svg {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.platforms__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.platform-card {
  padding: var(--space-8);
}

.platform-card h3 {
  margin-bottom: var(--space-3);
  font-size: 1.25rem;
}

.platform-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: var(--space-4);
}

.platform-card__status {
  font-size: 0.75rem;
  font-weight: 600;
}

.platform-card__status--live {
  color: var(--accent-green);
}

.platform-card__status--soon {
  color: var(--text-muted);
}

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

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

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal-scale {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.reveal {
  opacity: 0;
}

.reveal.is-visible {
  animation: reveal-up var(--duration-slow) var(--ease-out) forwards;
}

.reveal--scale.is-visible {
  animation: reveal-scale var(--duration-slow) var(--ease-out) forwards;
}

.reveal-stagger > .reveal:nth-child(1) { animation-delay: 0ms; }
.reveal-stagger > .reveal:nth-child(2) { animation-delay: 80ms; }
.reveal-stagger > .reveal:nth-child(3) { animation-delay: 160ms; }
.reveal-stagger > .reveal:nth-child(4) { animation-delay: 240ms; }
.reveal-stagger > .reveal:nth-child(5) { animation-delay: 320ms; }
.reveal-stagger > .reveal:nth-child(6) { animation-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
  }

  .reveal.is-visible {
    animation: none;
  }

  .card:hover {
    transform: none;
  }

  .btn:hover {
    transform: none;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.legal {
  padding-top: calc(80px + var(--space-16));
  padding-bottom: var(--space-16);
}

.legal__content {
  max-width: 740px;
}

.legal__content h1 {
  font-size: 2.5rem;
  margin-bottom: var(--space-2);
}

.legal__updated {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: var(--space-10);
}

.legal__content h2 {
  font-size: 1.375rem;
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-subtle);
}

.legal__content h3 {
  font-size: 1.1rem;
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
}

.legal__content p,
.legal__content li {
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: var(--space-3);
}

.legal__content ul {
  padding-left: var(--space-6);
  margin-bottom: var(--space-4);
}

.legal__content li {
  margin-bottom: var(--space-2);
}

.legal__content a {
  color: var(--accent-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal__content a:hover {
  color: var(--text-heading);
}

.legal__table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-4) 0;
  font-size: 0.9rem;
}

.legal__table th,
.legal__table td {
  text-align: left;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border-subtle);
  color: var(--text-body);
}

.legal__table th {
  color: var(--text-heading);
  font-weight: 600;
  background: var(--bg-secondary);
}

@media (max-width: 639px) {
  :root {
    --section-padding: var(--space-16);
    --container-padding: var(--space-4);
  }

  h1 {
    font-size: 2.25rem;
  }
}
