.theme-fsm {
  --fsm-bg0: #05060a;
  --fsm-bg1: #0b0e17;
  --fsm-surface: rgba(255, 255, 255, 0.03);
  --fsm-surface-hover: rgba(255, 255, 255, 0.06);
  --fsm-border: rgba(255, 255, 255, 0.08);
  --fsm-border-hover: rgba(255, 255, 255, 0.15);
  --fsm-text-main: #ececec;
  --fsm-text-muted: #cbd5e1;
  --fsm-text-dim: #94a3b8;
  --fsm-accent: #7c3aed;
  --fsm-accent-glow: rgba(124, 58, 237, 0.4);
  --fsm-cyan: #06b6d4;
  --fsm-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.6);
  --fsm-max-w: 1080px;
  --fsm-pad: clamp(20px, 5vw, 40px);
}

body.theme-fsm.landing {
  background-color: var(--fsm-bg0);
  background-image:
    radial-gradient(circle at 15% 0%, rgba(124, 58, 237, 0.15), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(6, 182, 212, 0.1), transparent 40%);
  color: var(--fsm-text-main);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.page.theme-fsm:not(.landing) {
  background-color: var(--fsm-bg0);
  background-image:
    radial-gradient(circle at 10% 0%, rgba(124, 58, 237, 0.12), transparent 45%),
    radial-gradient(circle at 90% 10%, rgba(6, 182, 212, 0.08), transparent 45%);
  color: var(--fsm-text-main);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.theme-fsm.landing a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.theme-fsm.landing .fsm-wrap {
  max-width: var(--fsm-max-w);
  margin: 0 auto;
  padding: 0 var(--fsm-pad);
}

.theme-fsm.landing .fsm-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.theme-fsm.landing .fsm-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.theme-fsm .nav,
.theme-fsm.landing .nav {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(5, 6, 10, 0.8);
  border-bottom: 1px solid var(--fsm-border);
}

.theme-fsm .nav-inner,
.theme-fsm.landing .nav-inner {
  max-width: var(--fsm-max-w);
  margin: 0 auto;
  padding: 0 var(--fsm-pad);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.theme-fsm .brand,
.theme-fsm.landing .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  color: var(--fsm-text-main);
}

.theme-fsm .brand-logo,
.theme-fsm.landing .brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 32px;
}

.theme-fsm .fsm-logo-mark,
.theme-fsm.landing .fsm-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--fsm-accent), var(--fsm-cyan));
  display: block;
}

.theme-fsm .nav-links,
.theme-fsm.landing .nav-links {
  display: none;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fsm-text-muted);
  flex-wrap: nowrap;
  white-space: nowrap;
}

.theme-fsm .nav-link:hover,
.theme-fsm.landing .nav-link:hover {
  color: var(--fsm-text-main);
}

.theme-fsm .nav-link::after,
.theme-fsm.landing .nav-link::after {
  display: none;
}

.theme-fsm .nav-actions,
.theme-fsm.landing .nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.theme-fsm .lang-wrap,
.theme-fsm.landing .lang-wrap {
  color: var(--fsm-text-muted);
  text-transform: none;
}

.theme-fsm .lang-select,
.theme-fsm.landing .lang-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--fsm-border);
  color: var(--fsm-text-main);
  color-scheme: dark;
}

.theme-fsm .lang-select option,
.theme-fsm.landing .lang-select option {
  background: #0b0e17;
  color: #f8fafc;
}

.theme-fsm .btn,
.theme-fsm.landing .btn {
  border-radius: 12px;
  height: 48px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid transparent;
}

.theme-fsm .nav .btn {
  height: 36px;
  padding: 0 16px;
  font-size: 13px;
  border-radius: 10px;
}

.theme-fsm .nav .lang-select {
  height: 32px;
  padding: 0.25rem 0.6rem;
  font-size: 12px;
}

.theme-fsm .btn-primary,
.theme-fsm.landing .btn-primary {
  background: var(--fsm-text-main);
  color: #000;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.theme-fsm .btn-primary:hover,
.theme-fsm.landing .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.25);
  background: #fff;
}

.theme-fsm .btn-secondary,
.theme-fsm.landing .btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--fsm-text-main);
  border-color: var(--fsm-border);
}

.theme-fsm .btn-secondary:hover,
.theme-fsm.landing .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--fsm-border-hover);
}

.theme-fsm .btn-ghost,
.theme-fsm.landing .btn-ghost {
  background: transparent;
  color: var(--fsm-text-main);
  border-color: var(--fsm-border);
}

.theme-fsm .btn-ghost:hover,
.theme-fsm.landing .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--fsm-border-hover);
}

.theme-fsm .btn-outline {
  background: transparent;
  color: var(--fsm-text-main);
  border-color: var(--fsm-border);
}

.theme-fsm .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--fsm-border-hover);
}

.theme-fsm.landing .fsm-btn-full {
  width: 100%;
}

.theme-fsm .cookie-banner__inner {
  background: rgba(7, 9, 14, 0.96);
  border: 1px solid var(--fsm-border);
  box-shadow: var(--fsm-shadow);
  color: var(--fsm-text-main);
}

.theme-fsm .cookie-banner__title {
  color: var(--fsm-text-main);
}

.theme-fsm .cookie-banner__message {
  color: var(--fsm-text-muted);
}

.theme-fsm .cookie-banner__link {
  color: var(--fsm-cyan);
}

.theme-fsm .cookie-banner__link:hover {
  color: #67e8f9;
}

.theme-fsm .section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.theme-fsm main.section {
  border-top: none;
}

.theme-fsm .section-eyebrow {
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  color: #d8b4fe;
}

.theme-fsm .section-title {
  color: var(--fsm-text-main);
}

.theme-fsm .section-subtitle {
  color: var(--fsm-text-muted);
}

.theme-fsm .card {
  background: var(--fsm-surface);
  border: 1px solid var(--fsm-border);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.4);
  color: var(--fsm-text-main);
}

.theme-fsm .card-text {
  color: var(--fsm-text-muted);
}

.theme-fsm .card-divider {
  border-top-color: var(--fsm-border);
}

.theme-fsm .panel-icon {
  background: rgba(124, 58, 237, 0.18);
  color: #f5f3ff;
}

.theme-fsm .panel-item-title,
.theme-fsm .summary-value,
.theme-fsm .billing-meta-value,
.theme-fsm .billing-section-title,
.theme-fsm .danger-title {
  color: var(--fsm-text-main);
}

.theme-fsm .panel-text,
.theme-fsm .panel-item-subtitle,
.theme-fsm .profile-note,
.theme-fsm .danger-note,
.theme-fsm .summary-label,
.theme-fsm .billing-meta-row,
.theme-fsm .billing-meta-label,
.theme-fsm .billing-invoice-meta {
  color: var(--fsm-text-muted);
}

.theme-fsm .panel-item-link {
  color: #67e8f9;
}

.theme-fsm .panel-item-link:hover {
  color: #a5f3fc;
}

.theme-fsm .billing-invoice-item {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--fsm-border);
}

.theme-fsm .billing-status {
  background: rgba(148, 163, 184, 0.18);
  border: 1px solid rgba(148, 163, 184, 0.3);
  color: #e2e8f0;
}

.theme-fsm .billing-status--trial {
  background: rgba(56, 189, 248, 0.16);
  border-color: rgba(56, 189, 248, 0.36);
  color: #bae6fd;
}

.theme-fsm .billing-status--active {
  background: rgba(34, 197, 94, 0.16);
  border-color: rgba(74, 222, 128, 0.36);
  color: #bbf7d0;
}

.theme-fsm .billing-status--pastdue {
  background: rgba(251, 146, 60, 0.18);
  border-color: rgba(251, 146, 60, 0.36);
  color: #fed7aa;
}

.theme-fsm .billing-status--canceled {
  background: rgba(248, 113, 113, 0.16);
  border-color: rgba(248, 113, 113, 0.34);
  color: #fecaca;
}

.theme-fsm .billing-status--disabled {
  background: rgba(148, 163, 184, 0.14);
  border-color: rgba(148, 163, 184, 0.26);
  color: #cbd5e1;
}

.theme-fsm .contact-details-title {
  color: var(--fsm-text-dim);
}

.theme-fsm .contact-detail {
  background: var(--fsm-surface);
  border: 1px solid var(--fsm-border);
  box-shadow: none;
}

.theme-fsm .contact-detail-label {
  color: var(--fsm-text-dim);
}

.theme-fsm .contact-detail-link {
  color: var(--fsm-text-main);
}

.theme-fsm .form-label {
  color: var(--fsm-text-main);
}

.theme-fsm .form-input,
.theme-fsm .form-textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--fsm-border);
  color: var(--fsm-text-main);
}

.theme-fsm select.form-input,
.theme-fsm.landing select.form-input {
  color-scheme: dark;
}

.theme-fsm select.form-input option,
.theme-fsm.landing select.form-input option {
  background: #0b0e17;
  color: #f8fafc;
}

.theme-fsm .form-input::placeholder,
.theme-fsm .form-textarea::placeholder {
  color: var(--fsm-text-dim);
}

.theme-fsm .form-input:focus,
.theme-fsm .form-textarea:focus {
  border-color: var(--fsm-accent);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.theme-fsm .form-hint {
  color: var(--fsm-text-dim);
}

.theme-fsm .form-preview,
.theme-fsm.landing .form-preview {
  color: var(--fsm-cyan);
}

.theme-fsm .form-region-loading,
.theme-fsm.landing .form-region-loading {
  color: var(--fsm-text-dim);
}

.theme-fsm .form-trial-banner {
  background: rgba(124, 58, 237, 0.14);
  border-color: rgba(124, 58, 237, 0.35);
  color: #f5f3ff;
  box-shadow: 0 16px 30px -20px rgba(124, 58, 237, 0.6);
}

.theme-fsm .form-link {
  color: var(--fsm-text-main);
}

.theme-fsm .form-check-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--fsm-border);
  color: var(--fsm-text-main);
}

.theme-fsm .form-check-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--fsm-border-hover);
}

.theme-fsm .form-check-card.checked {
  background: rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.4);
}

.theme-fsm .form-check-label {
  color: #f8fafc;
}

.theme-fsm .form-check-hint {
  color: rgba(248, 250, 252, 0.7);
}

.theme-fsm .form-check-indicator {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(5, 6, 10, 0.4);
}

.theme-fsm .form-check-indicator.checked {
  background: var(--fsm-accent);
  border-color: var(--fsm-accent);
}

.theme-fsm .form-error {
  background: rgba(127, 29, 29, 0.2);
  border-color: rgba(248, 113, 113, 0.4);
  color: #fecaca;
}

.theme-fsm .form-alert {
  background: rgba(127, 29, 29, 0.25);
  border-color: rgba(248, 113, 113, 0.4);
  color: #fecaca;
}

.theme-fsm .form-alert.success {
  background: rgba(34, 197, 94, 0.18);
  border-color: rgba(134, 239, 172, 0.4);
  color: #bbf7d0;
}

.theme-fsm .text-slate-500,
.theme-fsm .text-slate-600 {
  color: var(--fsm-text-dim);
}

.theme-fsm .pill {
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  color: #d8b4fe;
}

.theme-fsm .pricing-card,
.theme-fsm .pricing-support,
.theme-fsm .pricing-trial {
  background: var(--fsm-surface);
  border: 1px solid var(--fsm-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
}

.theme-fsm .pricing-card-secondary {
  background: rgba(255, 255, 255, 0.04);
}

.theme-fsm .pricing-title,
.theme-fsm .pricing-support-title {
  color: var(--fsm-text-main);
}

.theme-fsm .pricing-price {
  color: var(--fsm-text-main);
}

.theme-fsm .pricing-note,
.theme-fsm .pricing-support-text {
  color: var(--fsm-text-muted);
}

.theme-fsm .pricing-item {
  color: var(--fsm-text-muted);
}

.theme-fsm.landing .fsm-hero {
  padding: 80px 0 60px;
}

.theme-fsm.landing .fsm-hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.theme-fsm.landing .fsm-hero-title {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 24px 0;
  background: linear-gradient(to bottom right, #fff, #a5a5a5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.theme-fsm.landing .fsm-hero-lead {
  font-size: 18px;
  max-width: 540px;
  margin-bottom: 32px;
  color: var(--fsm-text-muted);
}

.theme-fsm.landing .fsm-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.theme-fsm.landing .fsm-hero-notes {
  margin-top: 24px;
  font-size: 13px;
  color: var(--fsm-text-dim);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.theme-fsm.landing .fsm-visual {
  position: relative;
  height: 400px;
  background: #0f121c;
  border: 1px solid var(--fsm-border);
  border-radius: 24px;
  box-shadow: var(--fsm-shadow);
  overflow: hidden;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.theme-fsm.landing .fsm-mock-card {
  position: absolute;
  background: rgba(30, 32, 40, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.theme-fsm.landing .fsm-mock-card--schedule {
  top: 40px;
  left: 40px;
  width: 200px;
  z-index: 2;
}

.theme-fsm.landing .fsm-mock-card--map {
  bottom: 40px;
  right: 40px;
  width: 220px;
  height: 160px;
  z-index: 1;
}

.theme-fsm.landing .fsm-mock-label {
  font-size: 11px;
  color: #aaaaaa;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.theme-fsm.landing .fsm-row {
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  margin-bottom: 12px;
  position: relative;
}

.theme-fsm.landing .fsm-block {
  height: 8px;
  background: var(--fsm-accent);
  border-radius: 4px;
}

.theme-fsm.landing .fsm-block--mid {
  width: 60%;
  margin-left: 20%;
}

.theme-fsm.landing .fsm-block--short {
  width: 40%;
  margin-left: 20%;
}

.theme-fsm.landing .fsm-block--long {
  width: 80%;
}

.theme-fsm.landing .fsm-block--cyan {
  background: var(--fsm-cyan);
}

.theme-fsm.landing .fsm-connector {
  position: absolute;
  top: 120px;
  left: 140px;
  width: 100px;
  height: 100px;
  border-right: 2px dashed rgba(255, 255, 255, 0.2);
  border-bottom: 2px dashed rgba(255, 255, 255, 0.2);
  border-bottom-right-radius: 20px;
  z-index: 0;
}

.theme-fsm.landing .fsm-pin {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--fsm-cyan);
  position: absolute;
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.2);
}

.theme-fsm.landing .fsm-pin--accent {
  background: var(--fsm-accent);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.2);
}

.theme-fsm.landing .fsm-pin--one {
  top: 30%;
  left: 40%;
}

.theme-fsm.landing .fsm-pin--two {
  top: 60%;
  left: 70%;
}

.theme-fsm.landing .fsm-pin--three {
  top: 45%;
  left: 20%;
}

.theme-fsm.landing .fsm-section {
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.theme-fsm.landing .fsm-section-header {
  max-width: 600px;
  margin-bottom: 40px;
}

.theme-fsm.landing .fsm-section-title {
  font-size: 32px;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.theme-fsm.landing .fsm-section-title--center {
  text-align: center;
}

.theme-fsm.landing .fsm-section-subtitle {
  margin: 0;
  font-size: 16px;
  color: var(--fsm-text-muted);
}

.theme-fsm.landing .fsm-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  color: #d8b4fe;
  font-size: 13px;
  font-weight: 500;
}

.theme-fsm.landing .fsm-pill--warning {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
}

.theme-fsm.landing .fsm-card {
  background: var(--fsm-surface);
  border: 1px solid var(--fsm-border);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.theme-fsm.landing .fsm-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: 0.3s;
}

.theme-fsm.landing .fsm-card:hover {
  background: var(--fsm-surface-hover);
  border-color: var(--fsm-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.theme-fsm.landing .fsm-card:hover::before {
  opacity: 1;
}

.theme-fsm.landing .fsm-card--center {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-fsm.landing .fsm-card-title {
  font-size: 20px;
  margin: 0 0 10px;
  font-weight: 600;
}

.theme-fsm.landing .fsm-card-text {
  margin: 0;
  color: var(--fsm-text-muted);
  font-size: 16px;
}

.theme-fsm.landing .fsm-feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.theme-fsm.landing .fsm-audit-text {
  margin-bottom: 24px;
  max-width: 420px;
}

.theme-fsm.landing .fsm-visual-note {
  font-size: 13px;
  color: var(--fsm-text-dim);
}

.theme-fsm.landing .fsm-pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 40px auto 0;
}

.theme-fsm.landing .fsm-pricing-card {
  border-color: rgba(255, 255, 255, 0.05);
}

.theme-fsm.landing .fsm-pricing-card--featured {
  border-color: var(--fsm-accent);
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.1), transparent);
}

.theme-fsm.landing .fsm-pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--fsm-accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-bottom-left-radius: 10px;
}

.theme-fsm.landing .fsm-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0;
}

.theme-fsm.landing .fsm-pricing-note {
  font-size: 16px;
  font-weight: 400;
  color: var(--fsm-text-muted);
}

.theme-fsm.landing .fsm-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}

.theme-fsm.landing .contact-details {
  margin-top: 20px;
}

.theme-fsm.landing .contact-details-title {
  color: var(--fsm-text-muted);
}

.theme-fsm.landing .contact-detail {
  background: var(--fsm-surface);
  border: 1px solid var(--fsm-border);
  box-shadow: none;
}

.theme-fsm.landing .contact-detail-label {
  color: var(--fsm-text-dim);
}

.theme-fsm.landing .contact-detail-link {
  color: var(--fsm-text-main);
}

.theme-fsm.landing .contact-form {
  display: grid;
  gap: 16px;
}

.theme-fsm.landing .form-label {
  color: var(--fsm-text-main);
}

.theme-fsm.landing .form-input,
.theme-fsm.landing .form-textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--fsm-border);
  color: var(--fsm-text-main);
}

.theme-fsm.landing .form-input::placeholder,
.theme-fsm.landing .form-textarea::placeholder {
  color: var(--fsm-text-dim);
}

.theme-fsm.landing .form-input:focus,
.theme-fsm.landing .form-textarea:focus {
  border-color: var(--fsm-accent);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.theme-fsm.landing .form-hint {
  color: var(--fsm-text-dim);
}

.theme-fsm.landing .form-link {
  color: var(--fsm-text-main);
}

.theme-fsm.landing .footer {
  border-top: 1px solid var(--fsm-border);
  color: var(--fsm-text-dim);
}

.theme-fsm .footer {
  border-top: 1px solid var(--fsm-border);
  color: var(--fsm-text-dim);
}

.theme-fsm .footer-meta-text {
  color: var(--fsm-text-dim);
}

.theme-fsm .footer-meta-link {
  color: var(--fsm-text-main);
}

.theme-fsm.landing .footer-link:hover {
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .theme-fsm .nav-links,
  .theme-fsm.landing .nav-links {
    display: flex;
  }
}

@media (max-width: 900px) {
  .theme-fsm.landing .fsm-hero-layout,
  .theme-fsm.landing .fsm-grid-2,
  .theme-fsm.landing .fsm-contact-grid {
    grid-template-columns: 1fr;
  }

  .theme-fsm.landing .nav-actions {
    gap: 8px;
  }

  .theme-fsm.landing .fsm-visual {
    height: 300px;
    margin-top: 40px;
  }

  .theme-fsm.landing .fsm-pricing-grid {
    grid-template-columns: 1fr;
  }
}
