:root {
  --bg: #0a0c12;
  --bg2: #0e1220;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);

  --acc1: #7c3aed;
  --acc2: #22d3ee;
  --good: #22c55e;
  --info: #60a5fa;

  --radius: 18px;
  --radius-sm: 12px;
  --container: 1100px;

  --focus: 2px solid rgba(34, 211, 238, 0.8);
}

html[data-theme="light"] {
  --bg: #f7f7fb;
  --bg2: #ffffff;
  --card: rgba(17, 24, 39, 0.06);
  --card2: rgba(17, 24, 39, 0.08);
  --text: rgba(17, 24, 39, 0.92);
  --muted: rgba(17, 24, 39, 0.68);
  --border: rgba(17, 24, 39, 0.16);
  --shadow: 0 18px 40px rgba(17, 24, 39, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: radial-gradient(1200px 700px at 10% -10%, rgba(124, 58, 237, 0.24), transparent 55%),
    radial-gradient(900px 600px at 110% 10%, rgba(34, 211, 238, 0.18), transparent 50%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.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;
}

.skip {
  position: absolute;
  left: 12px;
  top: -60px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  z-index: 1000;
  transition: top 120ms ease;
}
.skip:focus {
  top: 12px;
  outline: var(--focus);
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

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

.grad {
  background: linear-gradient(90deg, var(--acc1), var(--acc2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 12, 18, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
html[data-theme="light"] .header {
  background: rgba(247, 247, 251, 0.72);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-weight: 850;
  font-size: 12px;
  letter-spacing: 0.3px;
  transform: translateY(1px);
  white-space: nowrap;
}

.tag--ai {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.22), rgba(34, 211, 238, 0.14));
  border-color: rgba(255, 255, 255, 0.16);
  color: var(--text);
}

.brand__mark {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 55%),
    linear-gradient(135deg, var(--acc1), var(--acc2));
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.28);
}

.brand__name {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.header .brand__name {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
}

.brand--small .brand__mark {
  width: 22px;
  height: 22px;
  border-radius: 8px;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav__toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
  cursor: pointer;
}
.nav__toggle:focus-visible {
  outline: var(--focus);
}

.nav__burger {
  width: 18px;
  height: 12px;
  position: relative;
  display: block;
}
.nav__burger::before,
.nav__burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}
.nav__burger::before {
  top: 0;
}
.nav__burger::after {
  bottom: 0;
}

.nav__panel {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav__link {
  color: var(--muted);
  font-weight: 520;
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: background 140ms ease, color 140ms ease;
}
.nav__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}
.nav__link:focus-visible {
  outline: var(--focus);
}

.nav__cta {
  color: var(--text);
  background: rgba(124, 58, 237, 0.18);
  border: 1px solid rgba(124, 58, 237, 0.28);
}
.nav__cta:hover {
  background: rgba(124, 58, 237, 0.22);
}

.nav__link.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.4px;
}
.lang:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}
.lang:focus-visible {
  outline: var(--focus);
}

.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
  cursor: pointer;
}
.icon-btn:focus-visible {
  outline: var(--focus);
}
.icon-btn__sun {
  width: 16px;
  height: 16px;
  display: block;
  margin: 0 auto;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.2));
  box-shadow: 0 0 0 6px rgba(34, 211, 238, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-weight: 650;
  cursor: pointer;
  transition: transform 130ms ease, background 130ms ease, border-color 130ms ease;
}
.btn:hover {
  transform: translateY(-1px);
  background: var(--card2);
}
.btn:active {
  transform: translateY(0px);
}
.btn:focus-visible {
  outline: var(--focus);
}

.btn--primary {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.9), rgba(34, 211, 238, 0.75));
  border-color: rgba(255, 255, 255, 0.18);
}
.btn--primary:hover {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.98), rgba(34, 211, 238, 0.82));
}

.btn--ghost {
  background: transparent;
}
.btn--sm {
  padding: 10px 12px;
  border-radius: 12px;
}

.hero {
  position: relative;
  padding: 82px 0 30px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(800px 420px at 18% 20%, rgba(124, 58, 237, 0.18), transparent 56%),
    radial-gradient(720px 520px at 86% 0%, rgba(34, 211, 238, 0.12), transparent 58%);
  opacity: 0.9;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.hero__title {
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  margin: 14px 0 14px;
}

.hero__lead {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
  max-width: 62ch;
}

.hero__cta {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__bullets {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__bullets li {
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-weight: 560;
}

.hero__card {
  padding: 18px 18px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.stat {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  align-items: baseline;
  padding: 12px 0;
}
.stat__value {
  font-size: 20px;
  font-weight: 800;
}
.stat__label {
  color: var(--muted);
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 10px 0 12px;
}

.section {
  padding: 54px 0;
}
.section--cta {
  padding: 70px 0 86px;
}

main > .section {
  position: relative;
}

main > .section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    transparent 40%,
    rgba(255, 255, 255, 0.02)
  );
  opacity: 0.65;
}

main > .section .container {
  position: relative;
  z-index: 1;
}

.section__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 22px;
}

h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.12;
}

h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.section__head p,
.card p,
.price-card p,
.faq__item p {
  max-width: 72ch;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.pill {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-weight: 600;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.card {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.card:focus-within {
  outline: var(--focus);
}

.list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}
.list li {
  margin: 8px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  width: fit-content;
  margin-bottom: 12px;
}
.badge--green {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.24);
}
.badge--blue {
  background: rgba(96, 165, 250, 0.12);
  border-color: rgba(96, 165, 250, 0.24);
}

.segmented {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px;
  gap: 6px;
  background: rgba(255, 255, 255, 0.04);
}
.segmented__btn {
  border: 0;
  background: transparent;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
}
.segmented__btn.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}
.segmented__btn:focus-visible {
  outline: var(--focus);
}

.pricing {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-items: stretch;
}

.is-hidden {
  display: none !important;
}

.price-card {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.price-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.18);
}

.price-card:focus-within {
  outline: var(--focus);
}
.price-card--featured {
  background: linear-gradient(180deg, rgba(124, 58, 237, 0.16), rgba(34, 211, 238, 0.08));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.price-card__top p {
  margin: 0;
}

.price {
  display: grid;
  gap: 4px;
}
.price__value {
  font-size: 26px;
  font-weight: 900;
}
.price__meta {
  color: var(--muted);
}

.price__per {
  color: var(--muted);
  font-weight: 750;
  font-size: 13px;
  letter-spacing: 0.2px;
}

.note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.video-ticker {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.16);
  padding: 14px 0 18px;
}

.video-ticker__head {
  margin-bottom: 10px;
}

.video-ticker__head h2 {
  font-size: 18px;
}

.video-ticker__viewport {
  width: 100%;
  overflow: hidden;
}

.video-ticker__track {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  padding: 0 20px;
  animation: ticker-left 70s linear infinite;
}

.video-ticker__track:hover {
  animation-play-state: paused;
}

.video-ticker__item {
  width: 188px;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
  display: block;
  cursor: pointer;
}

@keyframes ticker-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  background: rgba(6, 8, 14, 0.8);
  backdrop-filter: blur(6px);
  padding: 20px;
}

.video-modal[hidden] {
  display: none;
}

.video-modal__dialog {
  width: min(100%, 980px);
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(12, 16, 24, 0.96);
  box-shadow: var(--shadow);
  padding: 14px;
}

.video-modal__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.video-modal__top h3 {
  margin: 0;
}

.video-modal__close {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
}

.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.video-modal__close:focus-visible {
  outline: var(--focus);
}

.video-modal__player {
  width: 100%;
  max-height: 78vh;
  border-radius: 12px;
  background: #000;
}

body.modal-open {
  overflow: hidden;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.step {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 12px;
}
.step__num {
  font-weight: 900;
  color: rgba(34, 211, 238, 0.88);
}
.step__body p {
  margin: 0;
}

.compare {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
  margin-bottom: 14px;
}

.table {
  margin-top: 18px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
}
.table__row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 12px;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}
.table__head {
  border-top: 0;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.table__cell {
  min-width: 0;
}

.table__cell--us {
  position: relative;
  font-weight: 750;
  color: var(--text);
}

.table__row:not(.table__head) .table__cell--us {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.14), rgba(34, 211, 238, 0.06));
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 12px;
  padding: 10px 12px;
}

.table__row:not(.table__head) .table__cell--us::before {
  content: "✓";
  display: inline-block;
  margin-right: 8px;
  color: rgba(34, 197, 94, 0.95);
  font-weight: 900;
}

.table__head .table__cell--us {
  background: linear-gradient(90deg, rgba(124, 58, 237, 0.22), rgba(34, 211, 238, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 10px 12px;
}

.compare__footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.compare__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.team {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.team__card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 18px;
}

.faq {
  display: grid;
  gap: 10px;
}
.faq__item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px 16px;
}
.faq__item summary {
  cursor: pointer;
  font-weight: 800;
  outline: none;
}
.faq__item summary::-webkit-details-marker {
  display: none;
}
.faq__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq__item summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  flex: 0 0 auto;
}
details[open] > summary::after {
  content: "–";
  color: var(--text);
}
.faq__item summary:focus-visible {
  outline: var(--focus);
}
.faq__item p {
  margin: 10px 0 0;
}

.cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.03)
  );
  padding: 18px;
  box-shadow: var(--shadow);
}

.cta__copy h2 {
  margin-bottom: 10px;
}
.cta__copy p {
  margin: 0;
}
.cta__meta {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}
.meta {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  align-items: baseline;
}
.meta__k {
  color: var(--muted);
  font-weight: 700;
}
.meta__v a {
  text-decoration: underline;
  text-decoration-color: rgba(34, 211, 238, 0.4);
  text-underline-offset: 4px;
}

.form {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
}

.form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.field__label {
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.18);
  outline: none;
  transition: border-color 140ms ease, background 140ms ease, transform 140ms ease;
}
html[data-theme="light"] input,
html[data-theme="light"] select,
html[data-theme="light"] textarea {
  background: rgba(255, 255, 255, 0.7);
}
input:focus,
select:focus,
textarea:focus {
  outline: var(--focus);
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(255, 255, 255, 0.22);
}

.form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.form__hint {
  margin: 12px 0 0;
  font-size: 13px;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px 0 20px;
  background: rgba(0, 0, 0, 0.12);
}
html[data-theme="light"] .footer {
  background: rgba(17, 24, 39, 0.03);
  border-top: 1px solid rgba(17, 24, 39, 0.1);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: start;
}
.footer__left p {
  margin: 10px 0 0;
}
.footer__right {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.footer__link {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}
.footer__link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}
.footer__bottom {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
html[data-theme="light"] .footer__bottom {
  border-top: 1px solid rgba(17, 24, 39, 0.08);
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 520ms ease, transform 520ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-bar {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  display: none;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(10, 12, 18, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  transition: opacity 180ms ease, transform 180ms ease;
}
html[data-theme="light"] .mobile-bar {
  background: rgba(247, 247, 251, 0.86);
}
.mobile-bar.is-hidden {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}
.mobile-bar__btn {
  width: 100%;
}

@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .pricing {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .cta {
    grid-template-columns: 1fr;
  }
  .team {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer__right {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 88px;
  }
  .nav {
    justify-content: flex-end;
  }
  .nav__toggle {
    display: inline-flex;
  }
  .nav__panel {
    position: absolute;
    top: 64px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(10, 12, 18, 0.72);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
  }
  html[data-theme="light"] .nav__panel {
    background: rgba(247, 247, 251, 0.86);
  }
  .nav__panel.is-open {
    display: flex;
  }
  .nav__link {
    padding: 12px 12px;
  }
  .header__actions .btn {
    display: none;
  }
  .form__row {
    grid-template-columns: 1fr;
  }
  .table__row {
    grid-template-columns: 1fr;
  }
  .table__row:not(.table__head) .table__cell--us {
    margin-top: 4px;
  }

  .mobile-bar {
    display: block;
  }

  .video-ticker__track {
    animation-duration: 90s;
  }
  .video-ticker__item {
    width: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .btn,
  .card,
  .price-card,
  .reveal {
    transition: none;
  }
  .card:hover,
  .price-card:hover {
    transform: none;
  }
}
