:root {
  --gold: #fdb813;
  --bg: #0e0f10;
  --bg-2: #111418;
  --surface: #14181d;
  --surface-2: #0f1317;
  --on: #f6f7f9;
  --muted: #a5adbb;
  --muted-2: #7f8795;
  --outline: #27303a;
  --outline-2: #343f4c;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  font-family: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--on);
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
html {
  scroll-padding-top: 92px;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
body {
  margin: 0;
  background: radial-gradient(900px 520px at 22% -10%, rgba(253, 184, 19, 0.16), transparent 62%),
    radial-gradient(900px 520px at 90% 0%, rgba(255, 255, 255, 0.08), transparent 62%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px,
      transparent 34px
    ),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px,
      transparent 34px
    ), linear-gradient(180deg, var(--bg), var(--bg-2));
}
a {
  color: inherit;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
}
.muted {
  color: var(--muted);
}
.small {
  font-size: 13px;
}
.mono {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", monospace;
}

.reveal {
  will-change: transform, opacity;
}
.js .reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 640ms ease, transform 760ms cubic-bezier(0.2, 0.9, 0.2, 1);
  transition-delay: var(--d, 0ms);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 15, 16, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
}
.brand__mark {
  width: 14px;
  height: 14px;
  border-radius: 6px;
  background: conic-gradient(from 210deg, var(--gold), #ffe08c, var(--gold));
  box-shadow: 0 12px 28px rgba(253, 184, 19, 0.24);
}
.brand__name {
  font-weight: 800;
  letter-spacing: 0.04em;
}
.brand__sub {
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: rgba(246, 247, 249, 0.62);
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  font-weight: 700;
  text-decoration: none;
  color: rgba(246, 247, 249, 0.82);
  font-size: 14px;
}
.nav a:hover {
  color: rgba(246, 247, 249, 1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(20, 24, 29, 0.72);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}
.btn:hover {
  filter: brightness(1.06);
}
.btn--gold {
  background: linear-gradient(180deg, var(--gold), #ffd164);
  border-color: rgba(253, 184, 19, 0.65);
  color: #0b0c0d;
}
.btn--ghost {
  background: transparent;
}
.btn--block {
  width: 100%;
}
.btn:active {
  transform: translateY(1px);
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(34px);
  opacity: 0.32;
  pointer-events: none;
  z-index: -1;
}
.hero::before {
  left: -240px;
  top: 40px;
  background: radial-gradient(circle at 30% 30%, rgba(253, 184, 19, 0.75), transparent 60%);
  animation: driftA 18s ease-in-out infinite;
}
.hero::after {
  right: -260px;
  top: -40px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.55), transparent 60%);
  animation: driftB 22s ease-in-out infinite;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding: 26px 18px 10px;
  align-items: start;
}
.hero__bg {
  position: absolute;
  inset: -40px -20px auto -20px;
  height: 360px;
  background: radial-gradient(560px 260px at 14% 38%, rgba(253, 184, 19, 0.18), transparent 70%),
    radial-gradient(560px 260px at 78% 42%, rgba(255, 255, 255, 0.1), transparent 72%),
    linear-gradient(115deg, rgba(255, 255, 255, 0.06), rgba(253, 184, 19, 0.04));
  filter: blur(0px);
  pointer-events: none;
  z-index: -1;
}
.eyebrow {
  margin: 0 0 10px;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 800;
  color: rgba(246, 247, 249, 0.72);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(20, 24, 29, 0.72);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(246, 247, 249, 0.86);
}
.chip--ok {
  border-color: rgba(52, 211, 153, 0.42);
  background: rgba(52, 211, 153, 0.14);
  color: rgba(187, 247, 208, 0.96);
}
.live {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(52, 211, 153, 0.95);
  box-shadow: 0 0 0 4px rgba(52, 211, 153, 0.12), 0 0 22px rgba(52, 211, 153, 0.28);
  animation: pulse 1.8s ease-in-out infinite;
}
.hero h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.hl {
  background: linear-gradient(180deg, rgba(253, 184, 19, 0.16), rgba(253, 184, 19, 0.16));
  border-bottom: 6px solid rgba(253, 184, 19, 0.42);
}
.lede {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(246, 247, 249, 0.78);
  max-width: 58ch;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.hero__proof {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.pill {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(20, 24, 29, 0.64);
  font-weight: 800;
  font-size: 13px;
  color: rgba(246, 247, 249, 0.82);
}
.pill--info {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  line-height: 1;
}
.pill--info:hover {
  border-color: rgba(253, 184, 19, 0.46);
}
.pill--info:focus-visible {
  outline: none;
  border-color: rgba(253, 184, 19, 0.75);
  box-shadow: 0 0 0 4px rgba(253, 184, 19, 0.16);
}
.pill--info.is-active {
  border-color: rgba(253, 184, 19, 0.58);
  background: rgba(253, 184, 19, 0.12);
  color: rgba(246, 247, 249, 0.92);
}

.proof-info {
  margin-top: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(520px 180px at 10% 0%, rgba(253, 184, 19, 0.16), transparent 70%),
    rgba(15, 19, 23, 0.55);
  padding: 10px 12px;
  max-width: 66ch;
}
.proof-info__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.proof-info__title {
  font-weight: 900;
  letter-spacing: 0.02em;
  color: rgba(246, 247, 249, 0.92);
}
.proof-info__body {
  color: rgba(246, 247, 249, 0.78);
  line-height: 1.5;
  font-size: 13px;
}
.proof-info__close {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(20, 24, 29, 0.72);
  color: rgba(246, 247, 249, 0.9);
  border-radius: 999px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 900;
  line-height: 1;
}
.proof-info__close:hover {
  filter: brightness(1.06);
}
.proof-info__close:active {
  transform: translateY(1px);
}

.hero__panel {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(20, 24, 29, 0.78);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.panel__head {
  padding: 14px 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.panel__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  color: #0b0c0d;
  background: rgba(253, 184, 19, 0.2);
  border: 1px solid rgba(253, 184, 19, 0.4);
}
.panel__head h2 {
  margin: 10px 0 6px;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.panel__body {
  padding: 14px;
}
.hint {
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(246, 247, 249, 0.7);
}
.console {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 22px
    ), rgba(15, 19, 23, 0.55);
}
.console__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 2px 0;
}
.console__row .k {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  color: rgba(246, 247, 249, 0.66);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}
.console__row .v {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  color: rgba(246, 247, 249, 0.86);
  font-size: 12px;
}

.section {
  padding: 22px 0;
  scroll-margin-top: 92px;
}
.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.section__head h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.section__head p {
  margin: 0;
  max-width: 72ch;
}
.section--alt {
  background: radial-gradient(1000px 460px at 15% 10%, rgba(253, 184, 19, 0.12), transparent 60%),
    radial-gradient(1000px 460px at 85% 0%, rgba(255, 255, 255, 0.09), transparent 62%),
    rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-cta {
  padding-top: 26px;
  padding-bottom: 26px;
  background: linear-gradient(135deg, rgba(10, 18, 17, 0.95), rgba(8, 28, 24, 0.85));
  border-top: 1px solid rgba(54, 214, 161, 0.12);
  border-bottom: 1px solid rgba(54, 214, 161, 0.12);
}

.shop-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 16px;
  align-items: center;
}

.shop-cta .eyebrow {
  color: rgba(54, 214, 161, 0.9);
}

.shop-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}

.shop-cta__actions .btn--ghost {
  border-color: rgba(54, 214, 161, 0.5);
}

@media (max-width: 900px) {
  .shop-cta__grid {
    grid-template-columns: 1fr;
  }
  .shop-cta__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cards--wide {
  grid-template-columns: repeat(3, 1fr);
}
.card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(20, 24, 29, 0.72);
  padding: 14px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}
.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}
.card p {
  margin: 0;
  color: rgba(246, 247, 249, 0.76);
  line-height: 1.55;
}
.card p + p {
  margin-top: 10px;
}
.list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(246, 247, 249, 0.78);
}
.list li {
  margin: 6px 0;
}

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: start;
}
.stack {
  display: grid;
  gap: 10px;
}
.metric {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(20, 24, 29, 0.72);
  padding: 14px;
}
.metric__k {
  font-weight: 900;
  color: rgba(246, 247, 249, 0.92);
  letter-spacing: 0.02em;
}
.metric__v {
  margin-top: 6px;
  color: rgba(246, 247, 249, 0.78);
  line-height: 1.5;
}
.quote {
  border-radius: var(--radius);
  border: 1px solid rgba(253, 184, 19, 0.32);
  background: linear-gradient(180deg, rgba(253, 184, 19, 0.1), rgba(20, 24, 29, 0.72));
  padding: 14px;
}
.quote__title {
  margin: 0 0 10px;
  font-weight: 900;
  color: rgba(246, 247, 249, 0.92);
}
.quote ol {
  margin: 0;
  padding-left: 18px;
  color: rgba(246, 247, 249, 0.82);
  line-height: 1.6;
}
.quote li {
  margin: 6px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.step {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(20, 24, 29, 0.72);
  padding: 14px;
}
.step__n {
  font-weight: 900;
  letter-spacing: 0.18em;
  color: rgba(246, 247, 249, 0.62);
  font-size: 12px;
}
.step h3 {
  margin: 8px 0 6px;
  font-size: 16px;
}
.step p {
  margin: 0;
  color: rgba(246, 247, 249, 0.76);
  line-height: 1.55;
}

.formcard {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(20, 24, 29, 0.78);
  box-shadow: var(--shadow);
  padding: 14px;
}
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.grid2__full {
  grid-column: 1 / -1;
}
.field {
  display: grid;
  gap: 6px;
}
.field span {
  font-weight: 900;
  color: rgba(246, 247, 249, 0.9);
  font-size: 13px;
}
.field input,
.field select {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  outline: none;
  background: rgba(15, 19, 23, 0.55);
  color: rgba(246, 247, 249, 0.92);
  font-size: 14px;
}
.field input::placeholder {
  color: rgba(246, 247, 249, 0.44);
}
.field input:focus,
.field select:focus {
  border-color: rgba(253, 184, 19, 0.75);
  box-shadow: 0 0 0 4px rgba(253, 184, 19, 0.16);
}

.status {
  margin: 10px 0 0;
}
.status-info {
  color: rgba(246, 247, 249, 0.74);
}
.status-ok {
  color: rgba(52, 211, 153, 0.95);
  font-weight: 800;
}
.status-error {
  color: rgba(248, 113, 113, 0.96);
  font-weight: 800;
}

.result {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 19, 23, 0.55);
  color: rgba(246, 247, 249, 0.86);
  min-height: 42px;
  line-height: 1.5;
}

.dash {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(20, 24, 29, 0.72);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.dash,
.card,
.hero__panel,
.formcard {
  position: relative;
}
.dash > * {
  position: relative;
  z-index: 1;
}
.dash::before,
.card::before,
.hero__panel::before,
.formcard::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 26%);
  opacity: 0.55;
  z-index: 0;
}
.dash::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 240ms ease;
  background: radial-gradient(
    420px 280px at var(--mx, 25%) var(--my, 10%),
    rgba(253, 184, 19, 0.14),
    transparent 62%
  );
}
.dash.is-hover::after {
  opacity: 1;
}
.dash__top {
  padding: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(600px 220px at 0% 0%, rgba(253, 184, 19, 0.16), transparent 70%),
    radial-gradient(600px 220px at 90% 0%, rgba(255, 255, 255, 0.1), transparent 70%),
    rgba(20, 24, 29, 0.6);
}
.dash__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.dash__title-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
}
.dash__title strong {
  font-size: 16px;
}
.dash__tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 19, 23, 0.55);
  color: rgba(246, 247, 249, 0.82);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.dash__tag,
.chip {
  line-height: 1;
}
.dash__meta {
  margin-top: 6px;
  color: rgba(246, 247, 249, 0.66);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.dash__meta-item {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 19, 23, 0.45);
  color: rgba(246, 247, 249, 0.74);
  line-height: 1;
}
.kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 14px;
}
.kpi {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 19, 23, 0.55);
  padding: 12px;
}
.kpi__k {
  color: rgba(246, 247, 249, 0.62);
  letter-spacing: 0.10em;
  font-size: 12px;
}
.kpi__v {
  margin-top: 6px;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.kpi__s {
  margin-top: 6px;
  color: rgba(246, 247, 249, 0.64);
  font-size: 12px;
}
.kpi__unit {
  opacity: 0.78;
  font-weight: 800;
}
.dash__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 10px;
  padding: 0 14px 14px;
}
.dash__card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 19, 23, 0.55);
  padding: 12px;
}
.dash__h {
  color: rgba(246, 247, 249, 0.62);
  letter-spacing: 0.10em;
  font-size: 12px;
}
.dash__p {
  margin-top: 10px;
}
.spark {
  margin-top: 10px;
  height: 88px;
  display: flex;
  gap: 6px;
  align-items: flex-end;
  padding: 10px 10px 8px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 26px
    ), rgba(15, 19, 23, 0.55);
}
.spark i {
  width: 100%;
  max-width: 14px;
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(253, 184, 19, 0.95), rgba(253, 184, 19, 0.3));
  border: 1px solid rgba(253, 184, 19, 0.45);
  transition: height 680ms cubic-bezier(0.2, 0.9, 0.2, 1);
}
.map {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 19, 23, 0.55);
  position: relative;
  overflow: hidden;
}
.map::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(90deg, transparent, rgba(253, 184, 19, 0.1), transparent);
  transform: translateX(-30%);
  animation: scan 5.6s ease-in-out infinite;
  pointer-events: none;
}
.map__cell {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background-color 520ms ease, transform 520ms ease, filter 520ms ease;
}
.map__cell.a {
  background: rgba(52, 211, 153, 0.22);
}
.map__cell.b {
  background: rgba(253, 184, 19, 0.22);
}
.map__cell.c {
  background: rgba(59, 130, 246, 0.18);
}
.map__cell.hot {
  transform: scale(1.03);
  filter: brightness(1.18);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.58;
  }
}
@keyframes scan {
  0% {
    transform: translateX(-40%) rotate(0.001deg);
  }
  55% {
    transform: translateX(40%) rotate(0.001deg);
  }
  100% {
    transform: translateX(-40%) rotate(0.001deg);
  }
}
@keyframes driftA {
  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0.001deg);
  }
  50% {
    transform: translate(70px, -22px) scale(1.04) rotate(0.001deg);
  }
}
@keyframes driftB {
  0%,
  100% {
    transform: translate(0, 0) scale(1) rotate(0.001deg);
  }
  50% {
    transform: translate(-58px, 30px) scale(1.03) rotate(0.001deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero::before,
  .hero::after,
  .live,
  .map::after {
    animation: none;
  }
  .spark i {
    transition: none;
  }
}

.footer {
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 15, 16, 0.55);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  gap: 16px;
  padding: 18px;
}
.footer-title {
  font-weight: 900;
  letter-spacing: 0.06em;
  color: rgba(246, 247, 249, 0.96);
}
.footer-desc {
  margin: 6px 0 10px;
  color: rgba(246, 247, 249, 0.74);
  font-weight: 700;
}
.footer-heading {
  margin: 14px 0 8px;
  color: rgba(246, 247, 249, 0.92);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
.footer-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}
.footer-inline-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 209, 100, 0.1);
  border: 1px solid rgba(255, 209, 100, 0.22);
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.footer-inline-links a:hover {
  background: rgba(255, 209, 100, 0.16);
  border-color: rgba(255, 209, 100, 0.4);
  transform: translateY(-1px);
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-list .k {
  color: rgba(246, 247, 249, 0.74);
  font-weight: 800;
  margin-right: 6px;
}
.footer-address {
  font-style: normal;
  color: rgba(246, 247, 249, 0.74);
  font-weight: 700;
  display: grid;
  gap: 8px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: rgba(246, 247, 249, 0.6);
  font-weight: 800;
  font-size: 13px;
}
.footer a,
.footer .call-link {
  text-decoration: none;
  color: #ffd164;
  font-weight: 800;
}
.footer a:hover,
.footer .call-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 126px;
  }
  .hero__grid {
    grid-template-columns: 1fr;
    padding-top: 18px;
  }
  .hero h1 {
    font-size: 38px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .two {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .kpis {
    grid-template-columns: 1fr;
  }
  .dash__grid {
    grid-template-columns: 1fr;
  }
  .section {
    scroll-margin-top: 126px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .topbar__inner {
    padding: 12px 18px;
  }
  .nav {
    gap: 10px;
  }
  .nav a {
    font-size: 13px;
  }
  .hero h1 {
    font-size: 34px;
  }
  .grid2 {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }

  /* Dashboard header: keep it compact and prevent overflow on mobile. */
  .dash__top {
    padding: 12px;
  }
  .dash__title {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .dash__title .chip {
    margin-left: auto;
  }
  .dash__tag {
    font-size: 11px;
    padding: 4px 8px;
  }
  .chip {
    font-size: 11px;
    padding: 4px 8px;
  }
  .dash__meta {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .dash__meta-item {
    font-size: 11px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(246, 247, 249, 0.7);
    max-width: 100%;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .footer-grid {
    padding: 16px;
  }
  .footer-bottom {
    padding: 12px 16px;
  }
}
