:root {
  --ink: #17202a;
  --muted: #58685d;
  --line: #c8d8cc;
  --paper: #f3f6f1;
  --soft: #eaf4e8;
  --blue: #0f5f24;
  --teal: #126b34;
  --green: #0f5f24;
  --amber: #c47a00;
  --red: #c62828;
  --white: #ffffff;
  --header: #003f08;
  --header-text: #ffffff;
  --card-shadow: 0 12px 32px rgba(20, 62, 29, 0.12);
  --hero-gradient: linear-gradient(
    120deg,
    rgba(0, 63, 8, 0.13),
    rgba(236, 246, 232, 0.9) 48%,
    rgba(196, 122, 0, 0.08)
  );
  --band: #edf6ea;
  --radius: 8px;
  font-family: "Segoe UI", Arial, sans-serif;
}

body:has(#theme-classic:checked) {
  --ink: #121b26;
  --muted: #5f6b7a;
  --line: #cfd6df;
  --paper: #eeecdc;
  --soft: #e6e3d2;
  --blue: #185ea5;
  --teal: #185ea5;
  --green: #2f7d32;
  --header: #15415f;
  --header-text: #ffffff;
  --card-shadow: none;
  --hero-gradient: linear-gradient(
    120deg,
    rgba(24, 94, 165, 0.13),
    rgba(238, 236, 220, 0.92) 48%,
    rgba(181, 107, 0, 0.08)
  );
  --band: #eef5fa;
  --radius: 2px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  transition:
    background 220ms ease,
    color 220ms ease;
}

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

a {
  color: inherit;
}

.theme-radio {
  position: fixed;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.loading-splash {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  align-items: start;
  justify-items: center;
  padding: 28px;
  background:
    radial-gradient(
      circle at 50% 38%,
      rgba(255, 255, 255, 0.22),
      transparent 32%
    ),
    var(--header);
  pointer-events: none;
  animation: splash-hide 2.7s ease forwards;
}

.loading-stage {
  position: relative;
  display: grid;
  align-content: start;
  width: min(1180px, 94vw);
  min-height: min(720px, calc(100vh - 56px));
  padding-top: clamp(36px, 8vh, 82px);
}

.loading-frame {
  position: relative;
  z-index: 1;
  justify-self: end;
  margin-top: clamp(24px, 5vh, 46px);
  width: min(1120px, 92vw);
  aspect-ratio: 16 / 8.4;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 30px 84px rgba(0, 0, 0, 0.34);
  animation: splash-lift 2.5s ease forwards;
}

.loading-frame::before {
  content: "";
  position: absolute;
  inset: -28px 24px auto auto;
  z-index: -1;
  width: 72%;
  height: 42%;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.16);
}

.loading-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.loading-modern {
  opacity: 0;
  animation: loading-modern 2.35s ease forwards;
}

.loading-classic {
  animation: loading-classic 2.35s ease forwards;
}

.loading-caption {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 3px;
  max-width: min(820px, 88vw);
  margin-left: clamp(0px, 2vw, 28px);
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #ffffff;
  background: transparent;
  box-shadow: none;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.28);
}

.loading-caption span {
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.loading-caption strong {
  font-size: clamp(34px, 6.5vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 32px;
  border-bottom: 1px solid rgba(23, 32, 42, 0.18);
  color: var(--header-text);
  background: var(--header);
  backdrop-filter: blur(14px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
}

.nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}

.theme-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 750;
}

.theme-switcher label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

#theme-modern:checked ~ .site-header label[for="theme-modern"],
#theme-classic:checked ~ .site-header label[for="theme-classic"] {
  color: var(--header);
  background: #ffffff;
}

.hero {
  display: block;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 68px);
  padding: 42px 32px 380px;
  background: var(--hero-gradient), var(--paper);
}

.hero-copy,
.section,
.contact,
.proof-strip,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(1180px, calc(100% - 40px));
  max-width: none;
  margin-inline: auto;
  padding-top: clamp(8px, 2.5vh, 26px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 960px;
  margin: 0;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.lead {
  max-width: 720px;
  margin: 20px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(15, 95, 36, 0.22);
  border-radius: var(--radius);
  color: #26362b;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.button.secondary {
  color: var(--blue);
  background: var(--white);
}

.hero-media {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 22px;
  width: min(1120px, 84vw);
  margin: 0;
  transform: translateX(-50%);
}

.dashboard-morph {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 32, 42, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(20, 62, 29, 0.18);
}

.dashboard-morph::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(243, 246, 241, 0.92),
    rgba(243, 246, 241, 0.7) 18%,
    rgba(243, 246, 241, 0.28) 38%,
    transparent 64%
  );
  backdrop-filter: blur(3.4px);
  mask-image: linear-gradient(180deg, #000 0%, #000 50%, transparent 80%);
}

.dashboard-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
}

.dashboard-modern {
  position: absolute;
  inset: 0;
  opacity: 1;
  animation: dashboard-pulse 6s ease-in-out infinite;
}

body:has(#theme-classic:checked) .dashboard-modern {
  opacity: 0;
  animation: none;
}

.morph-badge {
  position: absolute;
  z-index: 3;
  right: 14px;
  bottom: 14px;
  display: flex;
  pointer-events: none;
  gap: 6px;
  padding: 6px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.morph-badge span,
.morph-badge strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 6px;
  font-size: 12px;
}

.morph-badge span {
  color: var(--muted);
}

.morph-badge strong {
  color: #ffffff;
  background: var(--blue);
}

figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: -8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.regulation-alert {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 34px;
  width: min(1180px, calc(100% - 40px));
  margin: -8px auto 28px;
  padding: 26px;
  border: 1px solid rgba(196, 122, 0, 0.36);
  border-radius: var(--radius);
  background: #fffaf0;
  box-shadow: 0 14px 38px rgba(111, 70, 0, 0.11);
}

.regulation-alert h2 {
  font-size: clamp(25px, 3vw, 38px);
}

.regulation-alert p:last-child {
  margin: 0;
  color: #604314;
  font-size: 18px;
}

.regulation-alert a {
  display: inline-flex;
  margin-left: 8px;
  color: var(--blue);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.proof-strip div {
  min-height: 132px;
  padding: 24px;
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.proof-strip strong,
.proof-strip span {
  display: block;
}

.proof-strip strong {
  margin-bottom: 8px;
  font-size: 18px;
}

.proof-strip span,
.section p,
.pricing-note,
.contact p {
  color: var(--muted);
}

.section {
  padding: 84px 0;
}

.friendly-scenes {
  padding-top: 64px;
}

.friendly-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.friendly-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
}

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

.friendly-grid figcaption {
  min-height: 68px;
  margin: 0;
  padding: 14px 16px 16px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.45;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
}

.feature-grid,
.package-grid,
.pricing-grid,
.quote-grid,
.screenshots {
  display: grid;
  gap: 18px;
}

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

.feature-grid article,
.pricing-grid article,
.quote-grid blockquote,
.package-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.feature-grid article {
  min-height: 160px;
  padding: 24px;
}

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

.screenshot-band {
  width: 100%;
  padding-inline: max(20px, calc((100vw - 1180px) / 2));
  background: var(--band);
}

.screenshot-slider {
  position: relative;
}

.screenshots {
  display: flex;
  grid-template-columns: none;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-padding-inline: 4px;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 18px;
  scrollbar-color: rgba(0, 107, 50, 0.45) rgba(255, 255, 255, 0.6);
}

.screenshots figure {
  flex: 0 0 min(520px, calc(100vw - 78px));
  margin: 0;
  scroll-snap-align: start;
}

.screenshots img,
.package-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
  border: 1px solid rgba(23, 32, 42, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.slider-button {
  position: absolute;
  top: 44%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(23, 32, 42, 0.14);
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 30px rgba(0, 107, 50, 0.24);
  font: inherit;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-button:hover,
.slider-button:focus-visible {
  background: var(--green-dark);
}

.slider-button:disabled {
  cursor: default;
  opacity: 0.35;
}

.slider-prev {
  left: -22px;
}

.slider-next {
  right: -22px;
}

.is-zoomable {
  cursor: zoom-in;
}

.is-zoomable:focus-visible {
  outline: 3px solid rgba(0, 107, 50, 0.45);
  outline-offset: 4px;
}

.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: 72px 28px 34px;
  background: rgba(9, 20, 17, 0.82);
  backdrop-filter: blur(10px);
}

.image-lightbox.is-open {
  display: grid;
}

.image-lightbox-frame {
  display: grid;
  gap: 12px;
  width: min(96vw, 1320px);
  margin: 0;
}

.image-lightbox-frame img {
  width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.image-lightbox-frame figcaption {
  color: var(--white);
  font-size: 15px;
  text-align: center;
}

.image-lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

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

.package-grid article {
  padding: 14px;
}

.program-title {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 58px;
  margin: 4px 8px 12px;
}

.program-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  object-fit: contain;
  background: var(--white);
}

.package-grid h3,
.package-grid p {
  margin-inline: 8px;
}

.program-title h3 {
  margin: 0;
}

.program-icons-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.program-icons-note img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.program-icons-note span {
  flex: 1 1 360px;
  color: var(--muted);
  font-weight: 650;
}

.value {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ux-section {
  background: #f6faf8;
  box-shadow:
    50vw 0 0 #f6faf8,
    -50vw 0 0 #f6faf8;
}

body:has(#theme-classic:checked) .ux-section {
  background: #f0eee1;
  box-shadow:
    50vw 0 0 #f0eee1,
    -50vw 0 0 #f0eee1;
}

.ux-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ux-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
}

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

.promotion-countdown {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: 44px;
  overflow: hidden;
  margin-top: 28px;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: var(--white);
  background: #064e2c;
  box-shadow: 0 22px 60px rgba(6, 78, 44, 0.2);
}

.promotion-countdown::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 280px;
  height: 280px;
  border: 44px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.promotion-copy,
.countdown-panel {
  position: relative;
  z-index: 1;
}

.promotion-copy h2 {
  max-width: 680px;
  margin: 10px 0 14px;
  color: var(--white);
  font-size: 38px;
}

.promotion-copy p:not(.promotion-label) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
}

.promotion-copy .button {
  margin-top: 12px;
  color: #064e2c;
  background: var(--white);
}

.promotion-label {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0;
  color: #d7f5df;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.promotion-signal {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7ef29b;
  box-shadow: 0 0 0 0 rgba(126, 242, 155, 0.55);
  animation: promotion-signal 1.8s ease-out infinite;
}

.countdown-panel {
  align-self: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.countdown-caption {
  display: block;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.countdown-grid div {
  display: grid;
  place-items: center;
  min-width: 0;
  padding: 13px 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.13);
}

.countdown-grid strong {
  color: var(--white);
  font-size: 30px;
  line-height: 1;
}

.countdown-grid span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.promotion-progress {
  overflow: hidden;
  height: 5px;
  margin: 18px 0 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.15);
}

.promotion-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #7ef29b;
  transition: width 600ms ease;
}

.countdown-panel small {
  color: rgba(255, 255, 255, 0.7);
}

.promotion-countdown.is-ended .promotion-signal {
  animation: none;
  background: rgba(255, 255, 255, 0.5);
}

.pricing-grid article {
  padding: 28px;
}

.pricing-grid .highlight {
  border-color: rgba(15, 118, 110, 0.45);
  box-shadow: inset 0 4px 0 var(--teal);
}

.price {
  margin: 10px 0 14px;
  color: var(--blue);
  font-size: 31px;
  font-weight: 850;
}

.pricing-note {
  margin-top: 22px;
  padding-left: 18px;
  border-left: 4px solid var(--amber);
}

.testimonials {
  background: var(--soft);
  box-shadow:
    50vw 0 0 var(--soft),
    -50vw 0 0 var(--soft);
}

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

blockquote {
  margin: 0;
  padding: 28px;
}

blockquote p {
  color: var(--ink);
  font-size: 19px;
}

cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.legacy {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  align-items: start;
}

.legacy-grid {
  display: grid;
  gap: 16px;
}

.legacy-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
}

.tech {
  padding-top: 0;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
}

summary {
  padding: 20px 24px;
  color: var(--blue);
  font-weight: 850;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 24px 24px;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: start;
  padding: 70px 0;
  border-top: 1px solid var(--line);
}

.contact-form {
  position: relative;
  display: grid;
  gap: 14px;
}

.direct-contact {
  display: grid;
  gap: 5px;
  margin-top: 26px;
  padding-left: 18px;
  border-left: 4px solid var(--green);
}

.direct-contact span:first-child {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.direct-contact strong {
  font-size: 19px;
}

.protected-phone {
  min-height: 28px;
  color: var(--muted);
  font-size: 17px;
}

.protected-phone a {
  color: var(--green);
  font-size: 21px;
  font-weight: 850;
  text-decoration: none;
}

.protected-phone a:hover,
.protected-phone a:focus-visible {
  text-decoration: underline;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.checkbox-label {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  color: var(--muted);
  font-weight: 650;
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note.is-error {
  color: #9b1c1c;
}

.form-note.is-success {
  color: var(--green);
  font-weight: 750;
}

.bottom-navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 26px;
  width: 100%;
  padding: 20px max(20px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.bottom-navigation a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.bottom-navigation a:hover,
.bottom-navigation a:focus-visible {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(0, 107, 50, 0.28);
  font-size: 25px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  justify-content: space-between;
  gap: 34px;
  align-items: center;
  padding: 32px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: grid;
  gap: 6px;
}

.footer-brand strong {
  color: var(--ink);
  font-size: 17px;
}

.footer-brand span {
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  display: grid;
  gap: 3px;
  min-width: 210px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--white);
  text-decoration: none;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  border-color: var(--green);
  box-shadow: 0 10px 24px rgba(0, 107, 50, 0.1);
  transform: translateY(-2px);
}

.footer-links span,
.footer-links small {
  font-size: 11px;
}

.footer-links span {
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links strong {
  color: var(--green);
  font-size: 15px;
}

@keyframes loading-modern {
  0%,
  28% {
    opacity: 0;
    transform: scale(1.01);
  }

  58%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes promotion-signal {
  70% {
    box-shadow: 0 0 0 10px rgba(126, 242, 155, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(126, 242, 155, 0);
  }
}

@keyframes loading-classic {
  0%,
  34% {
    opacity: 1;
  }

  72%,
  100% {
    opacity: 0;
  }
}

@keyframes splash-lift {
  0% {
    transform: translateY(18px) scale(0.985);
    opacity: 0.86;
  }

  42%,
  82% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateY(-6px) scale(1.004);
    opacity: 1;
  }
}

@keyframes splash-hide {
  0%,
  76% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes dashboard-pulse {
  0%,
  18% {
    clip-path: inset(0 0 0 100%);
    opacity: 0.94;
  }

  38%,
  72% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }

  92%,
  100% {
    clip-path: inset(0 100% 0 0);
    opacity: 0.94;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .loading-splash {
    display: none;
  }
}

@media (max-width: 940px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 14px 20px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 12px;
  }

  .theme-switcher {
    flex-wrap: wrap;
  }

  .hero,
  .two-column,
  .value,
  .regulation-alert,
  .promotion-countdown,
  .contact,
  .legacy {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 36px 20px 28px;
    gap: 24px;
  }

  .hero-copy {
    margin-left: 0;
    padding-top: 0;
    width: 100%;
  }

  .hero-media {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin: 22px auto 0;
    transform: none;
  }

  .dashboard-morph {
    transform: none;
  }

  h1 {
    max-width: 900px;
    font-size: 44px;
  }

  .proof-strip,
  .friendly-grid,
  .screenshots,
  .package-grid,
  .ux-grid,
  .pricing-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero-copy,
  .section,
  .contact,
  .proof-strip,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 100%;
    font-size: 36px;
  }

  h2 {
    font-size: 31px;
  }

  .lead {
    padding: 14px 15px;
    font-size: 17px;
  }

  .regulation-alert {
    width: min(100% - 28px, 1180px);
    padding: 20px;
  }

  .loading-splash {
    padding: 18px;
  }

  .loading-stage {
    min-height: calc(100vh - 36px);
    padding-top: 36px;
  }

  .loading-caption strong {
    font-size: 34px;
  }

  .loading-frame {
    width: 100%;
    margin-top: 22px;
  }

  .promotion-countdown {
    width: min(100% - 28px, 1180px);
    padding: 26px 18px;
  }

  .promotion-copy h2 {
    font-size: 30px;
  }

  .countdown-panel {
    padding: 14px;
  }

  .countdown-grid {
    gap: 5px;
  }

  .countdown-grid strong {
    font-size: 23px;
  }

  .screenshots figure {
    flex-basis: calc(100vw - 44px);
  }

  .slider-button {
    top: calc(50% - 18px);
    width: 40px;
    height: 40px;
    font-size: 28px;
  }

  .slider-prev {
    left: 6px;
  }

  .slider-next {
    right: 6px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-links a {
    min-width: 0;
  }

  .bottom-navigation {
    justify-content: flex-start;
    gap: 10px 20px;
    padding-inline: 14px;
  }

  .back-to-top {
    right: 14px;
    bottom: 14px;
    width: 44px;
    height: 44px;
  }
}
