:root {
  color-scheme: light;
}

/* ── Skip link (keyboard navigation) ─────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 99999;
  padding: 10px 20px;
  background: #ea580c;
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  transition: top 0.15s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}

/* ── Global keyboard focus ring ───────────────────────────────── */
:focus-visible {
  outline: 3px solid #ea580c;
  outline-offset: 2px;
  border-radius: 4px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: #111827;
  font-family: "Inter", "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.mvo-shell {
  min-height: 100vh;
}

.mvo-fallback-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(12, 14, 20, 0.98), rgba(12, 14, 20, 0.94));
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.mvo-fallback-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mvo-fallback-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  min-width: 0;
}

.mvo-fallback-header__logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #f97316, #e8650a);
  box-shadow: 0 10px 24px rgba(232, 101, 10, 0.28);
  position: relative;
}

.mvo-fallback-header__logo::before {
  content: "";
  position: absolute;
  inset: 9px;
  border: 2px solid #fff;
  border-bottom: 0;
  transform: rotate(45deg);
}

.mvo-fallback-header__brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.mvo-fallback-header__brand-text strong {
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
}

.mvo-fallback-header__brand-text small {
  font-size: 10px;
  color: #6b7280;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mvo-fallback-header__nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mvo-fallback-header__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 10px;
  color: #9ca3af;
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
  transition: all 0.15s ease;
}

.mvo-fallback-header__nav a:hover,
.mvo-fallback-header__nav a:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  color: #f3f4f6;
}

.mvo-home-fallback {
  background:
    radial-gradient(circle at 18% 0%, rgba(232, 101, 10, 0.24), transparent 32%),
    radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(135deg, #0a0d13, #111827);
  padding: 72px 20px 76px;
  position: relative;
  overflow: hidden;
}

.mvo-home-fallback__inner,
.mvo-home-fallback__proof-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.mvo-home-fallback__grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: center;
}

.mvo-home-fallback__content h1 {
  margin: 0 0 16px;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.mvo-home-fallback__eyebrow {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fdba74;
  font-size: 12px;
  font-weight: 850;
}

.mvo-home-fallback__lead {
  max-width: 720px;
  margin: 0 0 22px;
  color: #d1d5db;
  font-size: 18px;
  line-height: 1.7;
}

.mvo-home-fallback__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.mvo-home-fallback__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 28px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.mvo-home-fallback__cta--primary {
  background: #ea580c;
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(232, 101, 10, 0.24);
}

.mvo-home-fallback__cta--secondary {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.mvo-home-fallback__cta--full {
  width: 100%;
}

.mvo-home-fallback__cta:hover,
.mvo-home-fallback__cta:focus-visible {
  transform: translateY(-1px);
}

.mvo-home-fallback__chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.mvo-home-fallback__chips span {
  font-size: 12px;
  font-weight: 850;
  color: #e5e7eb;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  line-height: 1.1;
}

.mvo-home-fallback__card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(255, 248, 242, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.mvo-home-fallback__card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.mvo-home-fallback__card-kicker {
  font-size: 10.5px;
  font-weight: 900;
  color: #e8650a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.mvo-home-fallback__card h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.5px;
  color: #111827;
}

.mvo-home-fallback__card-icon {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  border: 1px solid #fed7aa;
  background: #fff7ed;
  position: relative;
}

.mvo-home-fallback__card-icon span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: #f97316;
  border-radius: 999px;
}

.mvo-home-fallback__card-icon span:nth-child(1) {
  top: 16px;
}

.mvo-home-fallback__card-icon span:nth-child(2) {
  top: 24px;
}

.mvo-home-fallback__card-icon span:nth-child(3) {
  top: 32px;
}

.mvo-home-fallback__field {
  margin-bottom: 12px;
}

.mvo-home-fallback__field label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 800;
  color: #374151;
}

.mvo-home-fallback__field label strong {
  color: #e8650a;
}

.mvo-home-fallback__select {
  width: 100%;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px 13px;
  font-size: 14px;
  color: #111827;
  background: #ffffff;
}

.mvo-home-fallback__range {
  position: relative;
  height: 20px;
  margin-top: 6px;
}

.mvo-home-fallback__range-bar {
  position: absolute;
  left: 0;
  right: 0;
  top: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f97316 0%, #ea580c 92%, #f1f5f9 92%, #f1f5f9 100%);
}

.mvo-home-fallback__range-thumb {
  position: absolute;
  right: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #e5e7eb;
  background: #ffffff;
}

.mvo-home-fallback__range-scale {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #6b7280;
  margin-top: 4px;
}

.mvo-home-fallback__price {
  background: linear-gradient(135deg, #0c0e14, #182033);
  color: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin: 10px 0 16px;
}

.mvo-home-fallback__price-label {
  font-size: 11px;
  color: #9ca3af;
  margin-bottom: 3px;
}

.mvo-home-fallback__price-value {
  font-size: 24px;
  font-weight: 900;
  color: #e8650a;
}

.mvo-home-fallback__price p {
  margin: 0;
  font-size: 12px;
  color: #d1d5db;
  text-align: right;
  line-height: 1.45;
}

.mvo-home-fallback__proof {
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
  padding: 13px 20px;
}

.mvo-home-fallback__proof-inner {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.mvo-home-fallback__proof-inner span {
  font-size: 13px;
  font-weight: 700;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mvo-home-fallback__proof-inner i {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #ecfdf5;
  border: 1px solid #d1fae5;
  position: relative;
  flex: 0 0 auto;
}

.mvo-home-fallback__proof-inner i::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 5px;
  width: 7px;
  height: 11px;
  border-right: 2px solid #059669;
  border-bottom: 2px solid #059669;
  transform: rotate(45deg);
}

.mvo-home-fallback__section-title {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 950;
  letter-spacing: -0.03em;
  color: #111827;
}

.mvo-preview-bar {
  background: #0c0e14;
  color: #e5e7eb;
  padding: 12px 16px;
  font: 600 14px/1.4 "Inter", "Segoe UI", sans-serif;
  text-align: center;
}

.mvo-preview-bar strong {
  color: #ffffff;
}

#mvo-root {
  min-height: calc(100vh - 48px);
}

.mvo-seo-fallback {
  padding: 56px 20px;
  background:
    radial-gradient(circle at top right, rgba(232, 101, 10, 0.12), transparent 28%),
    linear-gradient(180deg, #fffdfb 0%, #ffffff 100%);
}

.mvo-seo-fallback__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.mvo-seo-fallback__eyebrow {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(232, 101, 10, 0.16);
  background: #fff3eb;
  color: #b45309;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.mvo-seo-fallback h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.mvo-seo-fallback__lead {
  max-width: 760px;
  margin: 0 0 28px;
  color: #4b5563;
  font-size: 18px;
}

.mvo-seo-fallback__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.mvo-seo-fallback__grid > div {
  padding: 22px 24px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.mvo-seo-fallback__grid h2 {
  margin: 0 0 12px;
  font-size: 20px;
}

.mvo-seo-fallback__grid ul {
  margin: 0;
  padding-left: 18px;
  color: #4b5563;
}

.mvo-seo-fallback__grid li + li {
  margin-top: 8px;
}

.mvo-seo-fallback__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.mvo-seo-fallback__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 14px;
  background: #ea580c;
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(232, 101, 10, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.mvo-seo-fallback__cta:hover,
.mvo-seo-fallback__cta:focus-visible {
  background: #c2410c;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 20px 42px rgba(232, 101, 10, 0.30);
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.mvo-seo-fallback__links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(232, 101, 10, 0.18);
  border-radius: 999px;
  background: #ffffff;
  color: #c2410c;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.mvo-seo-fallback__links a:hover,
.mvo-seo-fallback__links a:focus-visible {
  border-color: #ea580c;
  background: #ea580c;
  color: #ffffff;
  transform: translateY(-1px);
  outline: none;
}

@media (max-width: 640px) {
  .mvo-fallback-header__inner {
    padding: 8px 16px;
    gap: 10px;
  }

  .mvo-fallback-header__logo {
    width: 30px;
    height: 30px;
    border-radius: 9px;
  }

  .mvo-fallback-header__logo::before {
    inset: 7px;
  }

  .mvo-fallback-header__brand-text strong {
    font-size: 13.5px;
  }

  .mvo-fallback-header__brand-text small {
    display: none;
  }

  .mvo-fallback-header__nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    max-width: 52vw;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.035);
    padding: 2px 0 2px 2px;
  }

  .mvo-fallback-header__nav a {
    min-height: 30px;
    padding: 6px 9px;
    font-size: 10.5px;
    white-space: nowrap;
    border-radius: 999px;
  }

  .mvo-home-fallback {
    padding: 34px 16px 90px;
  }

  .mvo-home-fallback__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mvo-home-fallback__content {
    text-align: center;
  }

  .mvo-home-fallback__content h1 {
    margin: 0 auto 12px;
    font-size: clamp(32px, 9.6vw, 43px);
    line-height: 1;
  }

  .mvo-home-fallback__lead {
    margin: 0 auto 17px;
    max-width: 330px;
    font-size: 15px;
    line-height: 1.52;
  }

  .mvo-home-fallback__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-bottom: 16px;
  }

  .mvo-home-fallback__cta {
    min-height: 54px;
    padding: 14px 18px;
    border-radius: 14px;
  }

  .mvo-home-fallback__chips {
    justify-content: center;
    gap: 6px;
    max-width: 320px;
    margin: 0 auto;
  }

  .mvo-home-fallback__chips span {
    font-size: 10px;
    padding: 5px 8px;
  }

  .mvo-home-fallback__card {
    border-radius: 26px;
    padding: 17px;
    margin-bottom: -58px;
    position: relative;
    z-index: 2;
    box-shadow: 0 26px 64px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(232, 101, 10, 0.10);
  }

  .mvo-home-fallback__card h2 {
    font-size: 19px;
  }

  .mvo-home-fallback__card-icon {
    width: 44px;
    height: 44px;
  }

  .mvo-home-fallback__price {
    border-radius: 18px;
    padding: 14px 15px;
  }

  .mvo-home-fallback__price-value {
    font-size: 22px;
  }

  .mvo-home-fallback__price p {
    font-size: 11.5px;
  }

  .mvo-home-fallback__proof {
    background: linear-gradient(180deg, #fff8f3, #f9fafb);
    padding: 78px 16px 12px;
  }

  .mvo-home-fallback__proof-inner {
    gap: 8px;
  }

  .mvo-home-fallback__proof-inner span {
    padding: 5px 8px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #f1e7de;
    color: #374151;
    font-size: 11.5px;
    gap: 5px;
  }

  .mvo-home-fallback__proof-inner i {
    width: 18px;
    height: 18px;
  }

  .mvo-home-fallback__proof-inner i::after {
    left: 5px;
    top: 3px;
    width: 5px;
    height: 8px;
  }

  .mvo-seo-fallback {
    padding: 40px 16px;
  }

  .mvo-seo-fallback__lead {
    font-size: 16px;
  }

  .mvo-seo-fallback__grid > div {
    padding: 18px 18px 20px;
    border-radius: 16px;
  }

  .mvo-seo-fallback__links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mvo-seo-fallback__links a {
    justify-content: center;
    width: 100%;
  }
}
