/* Matches RepairFront app dark theme (servicecore/app/globals.css .dark) */
:root {
  --background: #0c0a09;
  --surface-elevated: #1c1917;
  --surface-muted: #292524;
  --surface-hover: #292524;
  --border: #44403c;
  --text-primary: #fafaf9;
  --text-secondary: #d6d3d1;
  --text-muted: #a8a29e;
  --nav-active-bg: #4c1d95;
  --nav-active-text: #ddd6fe;
  --accent: #a78bfa;
  --accent-hover: #8b5cf6;
  --accent-foreground: #2e1065;
  --danger: #ef4444;
  --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.3);
  --shadow-md: 0 12px 32px rgb(0 0 0 / 0.45);
  --shadow-lg: 0 25px 50px -12px rgb(0 0 0 / 0.5);
  --max-width: 72rem;
  --content-width: 48rem;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--background);
}

html {
  color-scheme: dark;
}

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

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--background);
}

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

img {
  max-width: 100%;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--surface-elevated);
}

.site-header-inner,
.site-main,
.site-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-accent {
  color: var(--accent);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.site-nav a:hover {
  background: var(--surface-hover);
  color: var(--text-primary);
}

.site-nav a[aria-current="page"] {
  background: var(--nav-active-bg);
  color: var(--nav-active-text);
}

.btn-primary {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--accent);
  color: var(--accent-foreground);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-secondary {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--surface-elevated);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--surface-hover);
}

.site-main {
  flex: 1;
  width: 100%;
}

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

.hero {
  border-bottom: 1px solid var(--border);
  background: linear-gradient(
    135deg,
    var(--surface-elevated) 55%,
    color-mix(in srgb, var(--accent) 10%, var(--surface-elevated)) 100%
  );
  padding: 3rem 1rem 4rem;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-content {
  min-width: 0;
}

.hero-media {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-kicker {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.hero h1 {
  margin: 0.75rem 0 0;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-lead {
  margin: 1.25rem 0 0;
  max-width: 40rem;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-door-note {
  margin: 0.85rem 0 0;
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.hero-audience-links {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.hero-audience-links a {
  color: var(--accent);
  font-weight: 600;
}

.hero-audience-links a:hover {
  color: var(--accent-hover);
}

.door-crosslink {
  margin: 1rem 0 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.door-crosslink a {
  color: var(--accent);
  font-weight: 600;
}

.door-crosslink a:hover {
  color: var(--accent-hover);
}

.page-header .hero-actions {
  margin-top: 1.25rem;
}

.section {
  padding: 4rem 1rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-muted {
  background: var(--surface-muted);
  border-top: 1px solid var(--border);
  max-width: none;
}

.section-muted .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 1rem;
}

.section h2 {
  margin: 0;
  font-size: 1.5rem;
}

.section-intro {
  margin: 0.75rem 0 0;
  max-width: 36rem;
  color: var(--text-secondary);
}

.feature-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.ecosystem-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .ecosystem-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.card-kicker {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.ecosystem-intent-list {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.ecosystem-intent-list li + li {
  margin-top: 0.35rem;
}

.ecosystem-intent-card p:last-child {
  margin: 1rem 0 0;
}

.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.card-link:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  box-shadow: var(--shadow-md);
}

.card-link:hover h3 {
  color: var(--accent);
}

.card-link .card-more {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

.ecosystem-page-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem 4rem;
  display: grid;
  gap: 1.5rem;
}

.feature-page-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem 4rem;
  display: grid;
  gap: 1.5rem;
}

.hub-page-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem 4rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .hub-page-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

@media (min-width: 640px) {
  .feature-page-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.concept-hero-media {
  margin: 1.5rem 0 0;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.concept-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.card-photo.card-link {
  padding: 0;
}

.card-photo.card-link:hover .card-photo-img {
  opacity: 0.92;
}

.card-photo.card-link .card-photo-img {
  transition: opacity 0.15s ease;
}

@media (min-width: 640px) {
  .ecosystem-page-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.concept-article {
  max-width: var(--content-width);
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.concept-header {
  padding: 3rem 0 0;
}

.concept-breadcrumb {
  margin: 0;
  font-size: 0.875rem;
}

.concept-breadcrumb a {
  color: var(--accent);
  font-weight: 600;
}

.concept-breadcrumb a:hover {
  text-decoration: underline;
}

.concept-header h1 {
  margin: 0.75rem 0 0;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  line-height: 1.15;
}

.concept-lead {
  margin: 1rem 0 0;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.concept-body {
  margin-top: 2rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--surface-elevated);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 640px) {
  .concept-body {
    padding: 2rem;
  }
}

.concept-body section + section {
  margin-top: 1.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}

.concept-body h2 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  color: var(--text-primary);
}

.concept-body p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.concept-body p + p {
  margin-top: 0.75rem;
}

.concept-body a {
  color: var(--accent);
  font-weight: 600;
}

.concept-body a:hover {
  text-decoration: underline;
}

.concept-list {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.concept-list li + li {
  margin-top: 0.35rem;
}

.concept-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.concept-body .btn-primary {
  color: var(--accent-foreground);
}

.concept-body .btn-primary:hover {
  text-decoration: none;
}

.section-header-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.card {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--surface-elevated);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.card-photo {
  padding: 0;
}

.card-photo-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card h3,
.card-body h3 {
  margin: 0;
  font-size: 1.125rem;
}

.card p,
.card-body p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.showcase {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface-elevated);
}

.showcase-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .showcase-inner {
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
    padding: 4rem 1rem;
  }
}

.showcase-media {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.showcase-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.showcase-content h2 {
  margin: 0;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  line-height: 1.2;
}

.showcase-content p {
  margin: 1rem 0 0;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 32rem;
}

@media (max-width: 899px) {
  .showcase-inner {
    padding: 2.5rem 1rem;
  }

  .showcase-media {
    margin-top: -0.5rem;
  }
}

.cta-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .cta-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.link-accent {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
}

.link-accent:hover {
  text-decoration: underline;
}

.page-header {
  max-width: var(--content-width);
  margin: 0 auto 2rem;
  padding: 3rem 1rem 0;
}

.page-split {
  display: grid;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (min-width: 900px) {
  .page-split {
    grid-template-columns: minmax(16rem, 22rem) 1fr;
    gap: 2.5rem;
    align-items: start;
    padding: 0 1rem;
  }

  .page-split .page-header {
    padding-top: 3rem;
    margin-bottom: 2rem;
    max-width: none;
  }

  .page-split .form-shell {
    max-width: none;
    margin-bottom: 3rem;
    padding: 0;
  }
}

.page-aside {
  display: none;
}

@media (min-width: 900px) {
  .page-aside {
    display: block;
    position: sticky;
    top: 1.5rem;
    margin-top: 3rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    background: var(--surface-elevated);
  }

  .page-aside img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .page-aside-caption {
    padding: 1.25rem 1.5rem 1.5rem;
    background: linear-gradient(
      180deg,
      var(--surface-elevated),
      color-mix(in srgb, var(--accent) 8%, var(--surface-elevated))
    );
  }

  .page-aside-caption h2 {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.3;
  }

  .page-aside-caption p {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-secondary);
  }
}

.page-split-main {
  min-width: 0;
}

.page-header h1 {
  margin: 0;
  font-size: 1.875rem;
}

.page-header p {
  margin: 0.75rem 0 0;
  color: var(--text-secondary);
}

.form-shell,
.legal-article {
  max-width: var(--content-width);
  margin: 0 auto 3rem;
  padding: 0 1rem;
}

.form-card,
.legal-article {
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--surface-elevated);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 640px) {
  .form-card,
  .legal-article {
    padding: 2rem;
  }
}

.form-grid {
  display: grid;
  gap: 1rem;
}

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

.field label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  font: inherit;
  background: var(--surface-elevated);
  color: var(--text-primary);
}

.field textarea {
  min-height: 7rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid color-mix(in srgb, var(--accent) 35%, transparent);
  border-color: var(--accent);
}

.form-actions {
  margin-top: 1rem;
}

.form-error {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--danger);
}

.form-success {
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.5rem;
  background: var(--surface-muted);
  border: 1px solid var(--border);
}

.form-success h2 {
  margin: 0;
  font-size: 1.125rem;
}

.form-success p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.form-card-embed {
  padding: 1.5rem;
}

@media (min-width: 640px) {
  .form-card-embed {
    padding: 2rem;
  }
}

.form-embed-intro {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.google-form-embed {
  display: block;
  width: 100%;
  min-height: 75rem;
  border: 0;
  border-radius: 0.5rem;
  background: #ffffff;
}

.form-embed-fallback {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.form-embed-fallback a {
  color: var(--accent);
  font-weight: 600;
}

.form-embed-fallback a:hover {
  text-decoration: underline;
}

.form-placeholder {
  padding: 2rem 1rem;
  text-align: center;
}

.form-placeholder h2 {
  margin: 0;
  font-size: 1.125rem;
}

.form-placeholder p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.form-placeholder code {
  font-size: 0.8125rem;
}

.legal-article header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.legal-article h1 {
  margin: 0;
  font-size: 1.875rem;
}

.legal-meta {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.legal-body {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.legal-body section {
  margin-top: 1.5rem;
}

.legal-body h2 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--text-primary);
}

.legal-body p {
  margin: 0;
}

.legal-body p + p,
.legal-body p + .legal-list,
.legal-body .legal-list + p {
  margin-top: 0.75rem;
}

.legal-body a {
  color: var(--accent);
  font-weight: 600;
}

.legal-body a:hover {
  text-decoration: underline;
}

.legal-callout {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--surface-muted);
}

.legal-callout h2 {
  margin-top: 0;
}

.legal-list {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  color: var(--text-secondary);
}

.legal-list li {
  margin-top: 0.35rem;
}

.legal-list li:first-child {
  margin-top: 0;
}

.legal-note {
  margin-top: 0.5rem !important;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.license-table-wrap {
  margin-top: 0.75rem;
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
}

.license-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}

.license-table th,
.license-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.license-table th {
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface-muted);
}

.license-table tbody tr:last-child td {
  border-bottom: 0;
}

.license-tagline {
  display: block;
  margin-top: 0.25rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}

.legal-body .btn-primary {
  margin-top: 0.75rem;
  color: var(--accent-foreground);
}

.legal-body .btn-primary:hover {
  color: var(--accent-foreground);
  text-decoration: none;
}

.pricing-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem 4rem;
}

.pricing-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pricing-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  background: var(--surface-muted);
}

.pricing-tab {
  padding: 0.5rem 0.875rem;
  border: none;
  border-radius: 0.375rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: transparent;
  cursor: pointer;
}

.pricing-tab:hover {
  color: var(--text-primary);
}

.pricing-tab-active {
  background: var(--surface-elevated);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.pricing-annual-note,
.pricing-fleet-intro,
.pricing-footnote {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

.pricing-annual-note {
  margin: 0 0 1.25rem;
}

.pricing-fleet-intro {
  margin: 0 0 1.25rem;
  max-width: 42rem;
}

.pricing-footnote {
  margin: 2rem 0 0;
  max-width: 42rem;
}

.pricing-footnote a {
  color: var(--accent);
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }

  .pricing-grid-addons {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--surface-elevated);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.pricing-card-recommended {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  box-shadow: var(--shadow-md);
}

.pricing-badge {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--nav-active-text);
  background: var(--nav-active-bg);
}

.pricing-plan-name {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
}

.pricing-tagline {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.pricing-seats,
.pricing-vehicle-note {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
}

.pricing-amount {
  margin: 1.25rem 0 0;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.pricing-amount-value {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

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

.pricing-equiv {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.pricing-features {
  margin: 1.25rem 0 0;
  padding-left: 1.15rem;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.pricing-features li + li {
  margin-top: 0.35rem;
}

.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  width: auto;
  align-self: flex-start;
  line-height: 1.25;
}

.pricing-cta-wrap {
  margin-top: auto;
  padding-top: 1.5rem;
}

.pricing-cta-wrap .pricing-cta {
  margin-top: 0;
}

.pricing-addon-note {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.pricing-addons-section + .pricing-addons-section {
  margin-top: 2.5rem;
}

.pricing-addons-heading {
  margin: 0 0 0.35rem;
  font-size: 1.0625rem;
}

.pricing-addons-intro {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.pricing-coming-soon {
  margin: 1rem 0 0;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-secondary);
}

.pricing-card-coming-soon {
  opacity: 0.92;
}

.pricing-card-coming-soon .pricing-coming-soon {
  margin-top: auto;
  padding-top: 1.5rem;
}

.pricing-compare-coming-soon .pricing-compare-soon-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-muted);
}

.pricing-compare-addon-pill {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border: 1px solid color-mix(in srgb, var(--accent) 40%, var(--border));
  border-radius: 0.375rem;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-compare {
  margin-top: 3rem;
}

.pricing-compare-heading {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.pricing-compare-intro {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.pricing-compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--surface-elevated);
}

.pricing-compare-table {
  width: 100%;
  min-width: 40rem;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.pricing-compare-table th,
.pricing-compare-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.pricing-compare-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--surface-muted);
  color: var(--text-secondary);
  font-weight: 600;
  text-align: center;
}

.pricing-compare-feature-head {
  text-align: left !important;
  min-width: 14rem;
}

.pricing-compare-plan {
  min-width: 6.5rem;
}

.pricing-compare-group th {
  padding-top: 1rem;
  padding-bottom: 0.5rem;
  background: color-mix(in srgb, var(--surface-muted) 70%, transparent);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
}

.pricing-compare-feature {
  text-align: left;
  font-weight: 500;
  color: var(--text-secondary);
}

.pricing-compare-cell {
  text-align: center;
  color: var(--text-muted);
}

.pricing-compare-yes {
  color: var(--text-primary);
}

.pricing-compare-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 22%, transparent);
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
}

.pricing-compare-dash {
  color: var(--text-muted);
  opacity: 0.55;
}

.pricing-compare-value {
  font-weight: 600;
  color: var(--text-primary);
}

.pricing-compare-table tbody tr:last-child td,
.pricing-compare-table tbody tr:last-child th {
  border-bottom: 0;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--surface-muted);
  margin-top: auto;
}

.site-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

@media (min-width: 640px) {
  .site-footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-links a {
  color: var(--text-secondary);
}

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