:root {
  color-scheme: dark;
  --lx-maroon: #800000;
  --lx-maroon-deep: #4f0014;
  --lx-plum: #4b0082;
  --lx-lilac: #d8b4fe;
  --lx-cream: #fff8ef;
  --lx-base: #f4f4f9;
  --lx-ink: #160712;
  --lx-muted: #725d72;
  --lx-line-dark: rgba(54, 10, 42, 0.13);
  --lx-shadow: 0 26px 80px rgba(17, 1, 24, 0.28);
  --lx-shadow-plum: 0 26px 70px rgba(75, 0, 130, 0.2);
  --lx-container: 1180px;
  --lx-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--lx-cream);
  font-family: var(--lx-font);
  background:
    radial-gradient(circle at 14% 10%, rgba(216, 180, 254, 0.16), transparent 30rem),
    radial-gradient(circle at 88% 6%, rgba(128, 0, 0, 0.34), transparent 24rem),
    linear-gradient(140deg, #250018 0%, #73000c 46%, #1f0032 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(216, 180, 254, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 180, 254, 0.045) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), transparent 78%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 0% 45%, rgba(128, 0, 0, 0.24), transparent 24rem),
    radial-gradient(circle at 82% 70%, rgba(216, 180, 254, 0.13), transparent 30rem);
}

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

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

a[href],
button,
[role="button"],
summary,
label[for] {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(216, 180, 254, 0.86);
  outline-offset: 4px;
}

::selection {
  color: #250018;
  background: var(--lx-lilac);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  color: var(--lx-ink);
  background: var(--lx-lilac);
  border-radius: 999px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  overflow: hidden;
}

.container {
  width: min(100% - 2rem, var(--lx-container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(216, 180, 254, 0.1);
  background: rgba(37, 0, 24, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand__mark {
  width: 132px;
  height: auto;
}

.brand__dot {
  display: inline-grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  color: #250018;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #fff8ef, #d8b4fe);
  border-radius: 0.85rem;
  box-shadow: 0 14px 32px rgba(75, 0, 130, 0.28);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem;
  color: rgba(255, 248, 239, 0.8);
  font-size: 0.9rem;
  font-weight: 650;
  background: rgba(75, 0, 130, 0.24);
  border-radius: 999px;
}

.nav__links a {
  padding: 0.66rem 0.86rem;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.nav__links a:hover {
  color: #ffffff;
  background: rgba(216, 180, 254, 0.14);
  transform: translateY(-1px);
}

.nav__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.82rem 1.05rem;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  border: 0;
  border-radius: 999px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #250018;
  background: linear-gradient(135deg, #fff8ef, #d8b4fe 66%, #c084fc);
  box-shadow: 0 18px 42px rgba(75, 0, 130, 0.26);
}

.button--primary:hover {
  box-shadow: 0 24px 54px rgba(75, 0, 130, 0.38);
}

.button--ghost {
  color: rgba(255, 248, 239, 0.94);
  background: rgba(75, 0, 130, 0.28);
  box-shadow: inset 0 0 0 1px rgba(216, 180, 254, 0.13);
}

.button--ghost:hover {
  color: #ffffff;
  background: rgba(75, 0, 130, 0.42);
}

.button--soft {
  color: #ffffff;
  background: rgba(128, 0, 0, 0.46);
  box-shadow:
    inset 0 0 0 1px rgba(216, 180, 254, 0.12),
    0 18px 38px rgba(17, 1, 24, 0.18);
}

.button--soft:hover {
  background: rgba(128, 0, 0, 0.6);
  box-shadow:
    inset 0 0 0 1px rgba(216, 180, 254, 0.18),
    0 24px 48px rgba(17, 1, 24, 0.25);
}

.button__icon {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  padding: clamp(4.5rem, 8vw, 8rem) 0 clamp(4rem, 7vw, 7rem);
}

.hero__grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(2.2rem, 5vw, 5rem);
}

.hero__grid > *,
.section__header > *,
.model-grid > *,
.operator-grid > *,
.training-panel > *,
.cta-panel__content > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding: 0.44rem 0.7rem 0.44rem 0.48rem;
  color: rgba(255, 248, 239, 0.88);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: rgba(75, 0, 130, 0.28);
  border-radius: 999px;
}

.eyebrow__pulse {
  width: 0.7rem;
  height: 0.7rem;
  background: #50e3a4;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(80, 227, 164, 0.66);
  animation: pulse 1.9s ease-out infinite;
}

.hero h1,
.page-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(3.2rem, 8.4vw, 6.55rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.hero-title__line {
  display: block;
}

.hero h1 .hero-title__accent,
.page-hero h1 span {
  color: var(--lx-lilac);
}

.hero__copy,
.page-hero__copy {
  max-width: 45rem;
  margin: 1.45rem 0 0;
  color: rgba(255, 248, 239, 0.84);
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.7;
  overflow-wrap: break-word;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero__actions--center {
  justify-content: center;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2.3rem;
}

.proof-card {
  position: relative;
  overflow: hidden;
  min-height: 142px;
  padding: 1.05rem;
  color: rgba(255, 248, 239, 0.82);
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 180, 254, 0.18), transparent 8rem),
    linear-gradient(145deg, rgba(75, 0, 130, 0.28), rgba(37, 0, 24, 0.54));
  border-radius: 24px;
  box-shadow:
    0 18px 44px rgba(17, 1, 24, 0.18),
    inset 0 0 0 1px rgba(216, 180, 254, 0.1);
}

.proof-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 0.22rem;
  content: "";
  background: linear-gradient(90deg, rgba(216, 180, 254, 0), rgba(216, 180, 254, 0.76));
}

.proof-card--highlight {
  background:
    radial-gradient(circle at 88% 6%, rgba(216, 180, 254, 0.3), transparent 9rem),
    linear-gradient(145deg, rgba(128, 0, 0, 0.58), rgba(75, 0, 130, 0.36));
}

.proof-card__badge {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.34rem 0.56rem;
  color: #250018;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff8ef, var(--lx-lilac));
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(75, 0, 130, 0.2);
}

.proof-card strong {
  display: block;
  max-width: 13rem;
  margin-bottom: 0.38rem;
  color: #ffffff;
  font-size: 1.02rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.proof-card > span:not(.proof-card__badge) {
  display: block;
  font-size: 0.84rem;
  line-height: 1.48;
}

.proof-card > span:not(.proof-card__badge):last-child {
  color: rgba(255, 248, 239, 0.74);
}

.hero-card {
  position: relative;
  isolation: isolate;
}

.hero-card::before {
  position: absolute;
  inset: 10% -8% -12% 18%;
  z-index: -1;
  content: "";
  background: radial-gradient(circle, rgba(216, 180, 254, 0.22), transparent 64%);
  filter: blur(18px);
}

.photo-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  background: #250018;
  border-radius: 34px;
  box-shadow: var(--lx-shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.photo-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 35%, rgba(37, 0, 24, 0.9) 100%),
    linear-gradient(90deg, rgba(37, 0, 24, 0.28), transparent 56%);
}

.photo-card__overlay {
  position: absolute;
  right: 1.1rem;
  bottom: 1.1rem;
  left: 1.1rem;
  z-index: 2;
  padding: 1rem;
  color: #ffffff;
  background: rgba(37, 0, 24, 0.72);
  border-radius: 22px;
  backdrop-filter: blur(12px);
}

.photo-card__overlay span {
  display: block;
  margin-bottom: 0.32rem;
  color: var(--lx-lilac);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-card__overlay strong {
  display: block;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.cargo-panel {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  width: min(92%, 560px);
  margin: -2.1rem auto 0;
  padding: 0.85rem;
  color: var(--lx-ink);
  background: linear-gradient(135deg, #fff8ef, #f4e8ff);
  border-radius: 24px;
  box-shadow: 0 24px 55px rgba(37, 0, 24, 0.28);
}

.cargo-panel > div {
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.48);
  border-radius: 18px;
}

.cargo-panel__label {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--lx-muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cargo-panel strong {
  display: block;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--light {
  color: var(--lx-ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(216, 180, 254, 0.2), transparent 28rem),
    linear-gradient(180deg, var(--lx-cream), var(--lx-base));
}

.section--cream {
  color: var(--lx-ink);
  background: var(--lx-cream);
}

.section__header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.58fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section__kicker {
  margin: 0 0 0.8rem;
  color: var(--lx-maroon);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.section__lead {
  margin: 0;
  color: var(--lx-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.section__lead--dark {
  color: rgba(255, 248, 239, 0.86);
}

.model-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.section-copy {
  max-width: 560px;
}

.money-flow {
  display: grid;
  gap: 1rem;
}

.flow-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 1.3rem 1.35rem 1.3rem 4.6rem;
  background: rgba(255, 255, 255, 0.74);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(75, 0, 130, 0.08);
}

.flow-card span {
  position: absolute;
  top: 1.3rem;
  left: 1.25rem;
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 950;
  background: linear-gradient(135deg, var(--lx-maroon), var(--lx-plum));
  border-radius: 999px;
}

.flow-card h3 {
  margin: 0 0 0.55rem;
  color: #2c0b24;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.flow-card p {
  margin: 0;
  color: var(--lx-muted);
  line-height: 1.62;
}

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

.outcome-card {
  position: relative;
  overflow: hidden;
  min-height: 250px;
  padding: 1.35rem;
  color: #ffffff;
  background:
    radial-gradient(circle at 96% 6%, rgba(216, 180, 254, 0.2), transparent 9rem),
    linear-gradient(135deg, rgba(96, 0, 24, 0.96), rgba(44, 0, 66, 0.96));
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(16, 0, 24, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.outcome-card:hover {
  box-shadow: 0 28px 70px rgba(16, 0, 24, 0.28);
  transform: translateY(-4px);
}

.outcome-card__icon {
  display: inline-grid;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  margin-bottom: 1.4rem;
  color: #250018;
  font-size: 0.9rem;
  font-weight: 950;
  background: linear-gradient(135deg, #fff8ef, #d8b4fe);
  border-radius: 999px;
}

.outcome-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.22rem;
  letter-spacing: -0.03em;
}

.outcome-card p {
  margin: 0;
  color: rgba(255, 248, 239, 0.8);
  line-height: 1.65;
}

.operator-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr);
  gap: clamp(1rem, 2.5vw, 1.4rem);
  align-items: stretch;
}

.operator-copy {
  padding: clamp(1.4rem, 3vw, 2rem);
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 10%, rgba(216, 180, 254, 0.24), transparent 18rem),
    linear-gradient(135deg, #250018, #6b0014 58%, #2b003e);
  border-radius: 32px;
  box-shadow: var(--lx-shadow);
}

.operator-copy .section__kicker,
.cta-panel .section__kicker {
  color: var(--lx-lilac);
}

.operator-copy h2 {
  max-width: 11ch;
}

.operator-copy p {
  max-width: 35rem;
  color: rgba(255, 248, 239, 0.84);
  line-height: 1.72;
}

.operator-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.operator-chips span {
  display: inline-flex;
  padding: 0.56rem 0.74rem;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 820;
  background: rgba(216, 180, 254, 0.14);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(216, 180, 254, 0.12);
}

.proof-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-content: start;
}

.quote-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  gap: 1.05rem;
  justify-content: flex-start;
  padding: clamp(1.1rem, 2.4vw, 1.45rem);
  color: #2d0b25;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 239, 0.78)),
    radial-gradient(circle at 95% 0%, rgba(216, 180, 254, 0.45), transparent 10rem);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(75, 0, 130, 0.11);
}

.quote-card--feature {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at 95% 0%, rgba(216, 180, 254, 0.35), transparent 16rem),
    linear-gradient(135deg, #ffffff, #fff8ef 72%, #f2e7ff);
}

.quote-card__person {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
}

.quote-card__avatar {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--lx-maroon), var(--lx-plum));
  border-radius: 1rem;
  box-shadow: 0 14px 32px rgba(75, 0, 130, 0.16);
}

.quote-card__person strong,
.quote-card__person small {
  display: block;
}

.quote-card__person strong {
  color: #210217;
  font-size: 0.98rem;
  letter-spacing: -0.025em;
}

.quote-card__person small {
  margin-top: 0.18rem;
  color: var(--lx-muted);
  font-size: 0.82rem;
  font-weight: 720;
  line-height: 1.35;
}

.quote-card p {
  margin: 0;
  color: #2d0b25;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  font-weight: 760;
  line-height: 1.5;
  letter-spacing: -0.025em;
}

.quote-card__tag {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding: 0.42rem 0.58rem;
  color: var(--lx-maroon);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(128, 0, 0, 0.08);
  border-radius: 999px;
}

.training-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.7fr);
  gap: 2rem;
  align-items: end;
  padding: clamp(1.6rem, 4vw, 3rem);
  background: rgba(255, 255, 255, 0.76);
  border-radius: 34px;
  box-shadow: 0 22px 52px rgba(75, 0, 130, 0.1);
}

.training-panel p:last-child {
  margin: 0;
  color: var(--lx-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4rem);
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 5%, rgba(216, 180, 254, 0.3), transparent 22rem),
    linear-gradient(135deg, #250018, #800000 52%, #4b0082);
  border-radius: 38px;
  box-shadow: var(--lx-shadow);
}

.cta-panel__content {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 2rem;
  align-items: center;
}

.cta-panel h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.066em;
}

.cta-panel p:not(.section__kicker) {
  max-width: 46rem;
  margin: 1rem 0 0;
  color: rgba(255, 248, 239, 0.84);
  font-size: 1.08rem;
  line-height: 1.75;
}

.site-footer {
  padding: 2.2rem 0;
  color: rgba(255, 248, 239, 0.72);
  background: #180011;
  border-top: 1px solid rgba(216, 180, 254, 0.08);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-links a {
  color: rgba(255, 248, 239, 0.76);
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 50;
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.72rem 0.9rem;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: -0.015em;
  background:
    radial-gradient(circle at 12% 15%, rgba(80, 227, 164, 0.35), transparent 1.4rem),
    linear-gradient(135deg, #260019, #710014 56%, #4b0082);
  border-radius: 999px;
  box-shadow: 0 20px 42px rgba(20, 0, 22, 0.42);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.whatsapp-float:hover {
  box-shadow: 0 26px 54px rgba(20, 0, 22, 0.52);
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
  width: 1.3rem;
  height: 1.3rem;
  flex: 0 0 auto;
  color: #50e3a4;
}

.whatsapp-float span {
  display: block;
}

.page-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 3rem;
}

.legal-card {
  width: min(100% - 2rem, 860px);
  margin: 0 auto clamp(4rem, 8vw, 6rem);
  padding: clamp(1.5rem, 4vw, 3rem);
  color: var(--lx-ink);
  background: var(--lx-cream);
  border-radius: 30px;
  box-shadow: var(--lx-shadow);
}

.legal-card h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--lx-muted);
  line-height: 1.75;
}

.legal-card a {
  color: var(--lx-maroon);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.legal-card--wide {
  width: min(100% - 2rem, 1040px);
}

.legal-document {
  scroll-margin-top: 6rem;
}

.legal-document section,
.legal-document nav {
  scroll-margin-top: 6rem;
}

.legal-document h2 {
  padding-top: 0.35rem;
}

.legal-document h3 {
  margin: 1.35rem 0 0.5rem;
  color: #2d0b25;
  font-size: 1.04rem;
  letter-spacing: -0.025em;
}

.legal-document ul,
.legal-document ol {
  padding-left: 1.35rem;
}

.legal-document li + li {
  margin-top: 0.45rem;
}

.legal-updated {
  width: fit-content;
  margin: 0 0 1.75rem;
  padding: 0.52rem 0.72rem;
  color: #2d0b25;
  font-size: 0.92rem;
  background: rgba(128, 0, 0, 0.08);
  border-radius: 999px;
}

.legal-toc {
  margin: 2.4rem 0;
  padding: clamp(1rem, 3vw, 1.35rem);
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 180, 254, 0.22), transparent 14rem),
    rgba(75, 0, 130, 0.07);
  border-radius: 24px;
}

.legal-toc h2 {
  margin-top: 0;
}

.legal-toc ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1.4rem;
  margin: 0;
}

.legal-address {
  color: var(--lx-muted);
  font-style: normal;
  line-height: 1.75;
}

.not-found {
  position: relative;
  display: flex;
  min-height: calc(100svh - 76px);
  align-items: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.not-found::before {
  position: absolute;
  inset: 12% auto auto 4%;
  width: min(32rem, 55vw);
  height: min(32rem, 55vw);
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(216, 180, 254, 0.18), transparent 68%);
  filter: blur(12px);
}

.not-found__hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.not-found__content {
  max-width: 700px;
}

.not-found__number {
  width: fit-content;
  margin: 0 0 -0.2rem;
  color: transparent;
  font-size: clamp(5.6rem, 18vw, 12rem);
  font-weight: 950;
  line-height: 0.76;
  letter-spacing: -0.13em;
  background: linear-gradient(135deg, #fff8ef 4%, var(--lx-lilac) 48%, #8b5cf6 100%);
  background-clip: text;
  filter: drop-shadow(0 24px 44px rgba(75, 0, 130, 0.34));
  -webkit-background-clip: text;
}

.not-found h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.not-found__lead {
  max-width: 43rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 248, 239, 0.82);
  font-size: clamp(1.06rem, 1.7vw, 1.28rem);
  line-height: 1.72;
}

.not-found__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.not-found__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.not-found__links a {
  display: inline-flex;
  padding: 0.5rem 0.7rem;
  color: rgba(255, 248, 239, 0.78);
  font-size: 0.88rem;
  font-weight: 760;
  background: rgba(75, 0, 130, 0.22);
  border-radius: 999px;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.not-found__links a:hover {
  color: #ffffff;
  background: rgba(216, 180, 254, 0.14);
  transform: translateY(-1px);
}

.not-found__visual {
  min-width: 0;
}

.dispatch-board {
  position: relative;
  overflow: hidden;
  padding: clamp(1rem, 2.4vw, 1.3rem);
  background:
    radial-gradient(circle at 88% 5%, rgba(216, 180, 254, 0.24), transparent 16rem),
    linear-gradient(145deg, rgba(37, 0, 24, 0.92), rgba(75, 0, 130, 0.5) 58%, rgba(128, 0, 0, 0.72));
  border-radius: 34px;
  box-shadow: var(--lx-shadow);
}

.dispatch-board::before {
  position: absolute;
  inset: auto -14% -20% 26%;
  height: 18rem;
  content: "";
  background: radial-gradient(circle, rgba(216, 180, 254, 0.25), transparent 64%);
  filter: blur(16px);
}

.dispatch-board__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.2rem 0 1rem;
}

.dispatch-board__top span {
  width: 0.62rem;
  height: 0.62rem;
  background: rgba(255, 248, 239, 0.42);
  border-radius: 999px;
}

.dispatch-board__top strong {
  margin-left: auto;
  color: rgba(255, 248, 239, 0.84);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dispatch-board__screen {
  position: relative;
  z-index: 1;
  padding: clamp(1rem, 3vw, 1.35rem);
  color: #250018;
  background:
    radial-gradient(circle at 90% 0%, rgba(216, 180, 254, 0.36), transparent 12rem),
    linear-gradient(145deg, #ffffff, #fff8ef 70%, #f2e7ff);
  border-radius: 26px;
  box-shadow: 0 24px 54px rgba(20, 0, 22, 0.28);
}

.dispatch-board__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.dispatch-board__header p,
.dispatch-board__header strong {
  margin: 0;
}

.dispatch-board__header p {
  color: var(--lx-maroon);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dispatch-board__header strong {
  max-width: 9rem;
  text-align: right;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.route-map {
  display: grid;
  grid-template-columns: auto minmax(2.2rem, 1fr) auto minmax(2.2rem, 1fr) auto;
  gap: 0.55rem;
  align-items: center;
  margin: clamp(1.7rem, 5vw, 2.6rem) 0;
}

.route-node {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  min-width: 4.2rem;
}

.route-node span {
  display: grid;
  width: 3.05rem;
  height: 3.05rem;
  place-items: center;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 950;
  background: linear-gradient(135deg, var(--lx-maroon), var(--lx-plum));
  border-radius: 1.1rem;
  box-shadow: 0 16px 34px rgba(75, 0, 130, 0.18);
}

.route-node--ready span,
.route-node--safe span {
  background: linear-gradient(135deg, #50e3a4, #16a36f);
}

.route-node--ready span::before,
.route-node--safe span::before {
  width: 0.78rem;
  height: 0.78rem;
  content: "";
  background: #ffffff;
  border-radius: 999px;
}

.route-node--missing span {
  background: linear-gradient(135deg, var(--lx-maroon), #2b003e);
}

.route-node strong {
  color: #3c1833;
  font-size: 0.78rem;
  font-weight: 950;
}

.route-line {
  height: 0.32rem;
  border-radius: 999px;
}

.route-line--done {
  background: linear-gradient(90deg, #50e3a4, var(--lx-lilac));
}

.route-line--muted {
  background: linear-gradient(90deg, rgba(75, 0, 130, 0.18), rgba(128, 0, 0, 0.18));
}

.dispatch-alert {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
  padding: 1rem;
  background: rgba(128, 0, 0, 0.08);
  border-radius: 20px;
}

.dispatch-alert > span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: #ffffff;
  font-weight: 950;
  background: linear-gradient(135deg, var(--lx-maroon), var(--lx-plum));
  border-radius: 0.75rem;
}

.dispatch-alert strong,
.dispatch-alert small {
  display: block;
}

.dispatch-alert strong {
  color: #250018;
  letter-spacing: -0.02em;
}

.dispatch-alert small {
  margin-top: 0.24rem;
  color: var(--lx-muted);
  font-weight: 650;
  line-height: 1.48;
}

.manifest-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.75rem;
}

.manifest-stack article {
  padding: 0.82rem;
  background: rgba(75, 0, 130, 0.08);
  border-radius: 18px;
}

.manifest-stack span,
.manifest-stack strong {
  display: block;
}

.manifest-stack span {
  color: var(--lx-muted);
  font-size: 0.72rem;
  font-weight: 820;
}

.manifest-stack strong {
  margin-top: 0.18rem;
  color: #2d0b25;
  font-size: 0.9rem;
  letter-spacing: -0.035em;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 0.6rem rgba(80, 227, 164, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(80, 227, 164, 0);
  }
}

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

@media (max-width: 980px) {
  .nav__links {
    display: none;
  }

  .hero__grid,
  .section__header,
  .model-grid,
  .operator-grid,
  .training-panel,
  .cta-panel__content,
  .not-found__hero {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 680px;
  }

  .proof-strip,
  .outcome-grid,
  .proof-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-panel__content {
    justify-items: start;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 1.2rem, var(--lx-container));
  }

  .nav {
    min-height: 68px;
  }

  .brand__mark {
    width: 112px;
  }

  .brand__dot {
    display: none;
  }

  .nav__actions .button--ghost {
    display: none;
  }

  .nav__actions {
    gap: 0.5rem;
  }

  .button {
    width: 100%;
  }

  .nav__actions .button,
  .whatsapp-float {
    width: auto;
  }

  .nav__actions .button--primary {
    min-height: 2.75rem;
    padding: 0.7rem 0.82rem;
    font-size: 0.82rem;
  }

  .nav__actions .button--primary .button__icon {
    display: none;
  }

  .whatsapp-float {
    display: none;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.55rem, 11.5vw, 2.95rem);
    letter-spacing: -0.058em;
  }

  .hero__actions,
  .footer-grid {
    align-items: stretch;
    flex-direction: column;
  }

  .proof-strip,
  .outcome-grid,
  .proof-board,
  .cargo-panel,
  .legal-toc ol {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .photo-card img {
    min-height: 360px;
  }

  .cargo-panel {
    width: calc(100% - 1rem);
  }

  .flow-card {
    padding: 4.6rem 1.15rem 1.2rem;
  }

  .section h2,
  .operator-copy h2,
  .cta-panel h2,
  .not-found h1 {
    max-width: none;
  }

  .not-found {
    min-height: auto;
    padding-top: 3.2rem;
  }

  .not-found__number {
    font-size: clamp(5rem, 28vw, 7rem);
  }

  .not-found h1 {
    font-size: clamp(2.65rem, 12vw, 3.35rem);
    letter-spacing: -0.065em;
  }

  .not-found__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .not-found__links {
    align-items: stretch;
    flex-direction: column;
  }

  .not-found__links a {
    justify-content: center;
  }

  .dispatch-board__header,
  .route-map,
  .manifest-stack {
    grid-template-columns: 1fr;
  }

  .dispatch-board__header strong {
    max-width: none;
    text-align: left;
  }

  .route-line {
    width: 0.32rem;
    height: 2.2rem;
    margin-inline: auto;
  }
}
