:root {
  --bg: #0b0b0b;
  --surface: #161616;
  --surface-2: #1b1b1b;
  --crimson: #e50914;
  --crimson-2: #d32f2f;
  --crimson-soft: rgba(229, 9, 20, 0.14);
  --white: #ffffff;
  --muted: #888888;
  --muted-2: #6c6c6c;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --display: "Plus Jakarta Sans", sans-serif;
  --body: "Inter", sans-serif;
  --mono: "JetBrains Mono", monospace;
  --maxw: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
::selection {
  background: var(--crimson);
  color: #fff;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--crimson);
}

.btn {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  border-radius: 12px;
  padding: 14px 24px;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition:
    transform 0.18s ease,
    box-shadow 0.25s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--crimson);
  color: #fff;
  box-shadow: 0 6px 24px -8px rgba(229, 9, 20, 0.6);
}
.btn-primary:hover {
  background: #ff1622;
  transform: translateY(-2px);
  box-shadow: 0 12px 34px -8px rgba(229, 9, 20, 0.75);
}
.btn-primary:active {
  transform: translateY(0);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--line-strong);
}
.btn-ghost:hover {
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 10px;
}

/* ───────── Announcement bar ───────── */
.topbar {
  background: linear-gradient(90deg, #1a0406, #2a0408 50%, #1a0406);
  border-bottom: 1px solid rgba(229, 9, 20, 0.25);
  text-align: center;
  font-size: 13px;
  color: #f3d3d5;
  padding: 9px 16px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
}
.topbar b {
  color: #fff;
}
.topbar .dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--crimson);
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.6);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(229, 9, 20, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(229, 9, 20, 0);
  }
}

/* ───────── Nav ───────── */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 11, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.logo .nx-pin {
  width: 26px;
  height: 32px;
  filter: drop-shadow(0 0 10px rgba(229, 9, 20, 0.55));
}
.logo .nexo {
  color: #fff;
}
.logo .zip {
  color: var(--crimson);
}
nav.links {
  display: flex;
  gap: 34px;
}
nav.links a {
  font-size: 15px;
  color: #cfcfcf;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}
nav.links a:hover {
  color: #fff;
}
nav.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: var(--crimson);
  transition: width 0.25s;
}
nav.links a:hover::after {
  width: 100%;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.login {
  font-weight: 600;
  font-size: 15px;
  color: #cfcfcf;
  padding: 8px 6px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--body);
}
.login:hover {
  color: #fff;
}
.login-mobile-only {
  display: none;
}
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span {
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.25s;
}

/* ───────── Hero ───────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 90px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg .glow {
  position: absolute;
  width: 780px;
  height: 780px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.22), transparent 62%);
  top: -260px;
  right: -180px;
  filter: blur(10px);
}
.hero-bg .glow2 {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.14), transparent 64%);
  bottom: -220px;
  left: -160px;
}
.hero-bg .streak {
  position: absolute;
  height: 1.5px;
  width: 60%;
  left: -5%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(229, 9, 20, 0.5),
    transparent
  );
}
.hero-bg .s1 {
  top: 26%;
  transform: rotate(-8deg);
}
.hero-bg .s2 {
  top: 54%;
  width: 48%;
  left: 30%;
  transform: rotate(-8deg);
  opacity: 0.5;
}
.hero-bg .s3 {
  top: 70%;
  width: 40%;
  left: -2%;
  transform: rotate(-8deg);
  opacity: 0.35;
}
.hero-bg .grid {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 60% 40%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 60% 40%, #000, transparent 78%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 58px;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 20px 0 22px;
}
.hero h1 .accent {
  color: var(--crimson);
}
.hero .sub {
  font-size: 18px;
  color: #b9b9b9;
  max-width: 520px;
  margin-bottom: 34px;
}
.hero .sub b {
  color: #fff;
  font-weight: 600;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  gap: 28px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-trust .ht {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-trust .num {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}
.hero-trust .lbl {
  font-size: 12.5px;
  color: var(--muted);
}

/* Phone mockup */
.phone-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}
.phone-wrap::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 60px;
  border-radius: 50%;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(229, 9, 20, 0.5), transparent 70%);
  filter: blur(14px);
  z-index: 0;
}
.phone {
  position: relative;
  z-index: 1;
  width: 300px;
  height: 608px;
  border-radius: 44px;
  background: #050505;
  border: 1px solid #2a2a2a;
  box-shadow:
    0 0 0 6px #0d0d0d,
    0 40px 80px -30px rgba(0, 0, 0, 0.9),
    0 0 60px -20px rgba(229, 9, 20, 0.4);
  padding: 11px;
}
.phone .screen {
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  position: relative;
  background: #0a0a0a;
}
.notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 26px;
  background: #050505;
  border-radius: 0 0 16px 16px;
  z-index: 5;
}
.statusbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  font-size: 12px;
  color: #fff;
  z-index: 4;
  font-family: var(--mono);
}
.statusbar .ico {
  display: flex;
  gap: 5px;
  align-items: center;
}

.map {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, #141414, transparent 50%),
    radial-gradient(circle at 70% 80%, #121212, transparent 50%), #0a0a0a;
}
.map .roads {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
}
.map-head {
  position: absolute;
  top: 50px;
  left: 16px;
  right: 16px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.map-head .city {
  font-size: 12px;
  color: #aaa;
  font-family: var(--mono);
}
.live-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(229, 9, 20, 0.16);
  border: 1px solid rgba(229, 9, 20, 0.4);
  color: #ff5a62;
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 20px;
  font-family: var(--mono);
}
.live-tag .d {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--crimson);
  animation: pulse 1.8s infinite;
}

.route-svg {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.route-line {
  fill: none;
  stroke: var(--crimson);
  stroke-width: 3;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(229, 9, 20, 0.8));
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: draw 3.4s ease forwards;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}
.pinDot {
  fill: var(--crimson);
}
.pinHalo {
  fill: none;
  stroke: var(--crimson);
  stroke-width: 2;
  opacity: 0.6;
  transform-origin: center;
  animation: halo 2.2s ease-out infinite;
}
@keyframes halo {
  0% {
    r: 5;
    opacity: 0.7;
  }
  100% {
    r: 16;
    opacity: 0;
  }
}
.mover {
  fill: #fff;
  filter: drop-shadow(0 0 6px #fff);
}

.ship-card {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  background: rgba(20, 20, 20, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  padding: 15px;
}
.ship-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.ship-top .tn {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}
.ship-top .eta {
  font-family: var(--mono);
  font-size: 11px;
  color: #ff5a62;
  font-weight: 600;
}
.ship-route {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
}
.ship-route .pt {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.ship-route .arr {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    #444 0 6px,
    transparent 6px 11px
  );
}
.ship-route .small {
  font-size: 11px;
  color: var(--muted);
}
.stepper {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 14px;
}
.stepper::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  height: 2px;
  background: #2a2a2a;
}
.stepper .fill {
  position: absolute;
  top: 6px;
  left: 6px;
  height: 2px;
  width: 46%;
  background: var(--crimson);
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
  width: 25%;
}
.step .ball {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #2a2a2a;
  border: 2px solid #2a2a2a;
}
.step.done .ball {
  background: var(--crimson);
  border-color: var(--crimson);
}
.step.now .ball {
  background: #fff;
  border-color: var(--crimson);
  box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.25);
}
.step .t {
  font-size: 8.5px;
  color: var(--muted);
  text-align: center;
  line-height: 1.2;
}
.step.done .t,
.step.now .t {
  color: #fff;
}
.driver {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.driver .av {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #e50914, #7a0409);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  font-family: var(--display);
}
.driver .di {
  min-width: 0;
  flex: 1;
}
.driver .dn {
  font-size: 12.5px;
  font-weight: 600;
}
.driver .dr {
  font-size: 9.5px;
  color: var(--muted);
  font-family: var(--mono);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.driver .call {
  margin-left: auto;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--crimson-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(229, 9, 20, 0.4);
}

/* ───────── Sections shared ───────── */
section {
  position: relative;
}
.section-pad {
  padding: 96px 0;
}
.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.sec-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.02em;
  margin: 16px 0 14px;
  line-height: 1.1;
}
.sec-head p {
  color: var(--muted);
  font-size: 17px;
}

/* ───────── Categories ───────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.cat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 20px 24px;
  position: relative;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.25s ease;
  overflow: hidden;
}
.cat:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 9, 20, 0.5);
  box-shadow: 0 18px 40px -22px rgba(229, 9, 20, 0.6);
}
.cat .ic {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: #1f1f1f;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: 0.2s;
}
.cat:hover .ic {
  background: var(--crimson-soft);
  border-color: rgba(229, 9, 20, 0.4);
}
.cat .ic svg {
  width: 26px;
  height: 26px;
  stroke: var(--crimson);
}
.cat h3 {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 5px;
}
.cat p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}
.free-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 13px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: #43e08b;
  background: rgba(67, 224, 139, 0.1);
  border: 1px solid rgba(67, 224, 139, 0.3);
  padding: 4px 9px;
  border-radius: 20px;
}

/* ───────── Dual value ───────── */
.dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.panel {
  border-radius: 22px;
  padding: 38px;
  position: relative;
  overflow: hidden;
}
.panel.shippers {
  background: var(--surface);
  border: 1px solid var(--line);
}
.panel.couriers {
  background: linear-gradient(160deg, #1c0608, #160404);
  border: 1px solid rgba(229, 9, 20, 0.3);
}
.panel .ptag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--crimson);
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}
.panel h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.feat {
  display: flex;
  gap: 15px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.feat .fi {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 11px;
  background: #1f1f1f;
  display: flex;
  align-items: center;
  justify-content: center;
}
.panel.couriers .feat .fi {
  background: rgba(229, 9, 20, 0.16);
}
.feat .fi svg {
  width: 21px;
  height: 21px;
  stroke: var(--crimson);
}
.feat h4 {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--display);
  margin-bottom: 3px;
}
.feat p {
  font-size: 13.5px;
  color: var(--muted);
}
.credits-box {
  margin-top: 26px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(229, 9, 20, 0.25);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.coin {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ff404a, #b30009);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 800;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 0 22px -4px rgba(229, 9, 20, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.25);
}
.credits-box .ctxt b {
  color: #fff;
  font-weight: 700;
}
.credits-box .ctxt p {
  font-size: 13.5px;
  color: #cdbcbd;
  margin-top: 3px;
}

/* ───────── Trust banner ───────── */
.trust {
  background: linear-gradient(90deg, #120203, #1c0405 50%, #120203);
  border-top: 1px solid rgba(229, 9, 20, 0.2);
  border-bottom: 1px solid rgba(229, 9, 20, 0.2);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 0;
  flex-wrap: wrap;
}
.trust-lead {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-lead .shield {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(229, 9, 20, 0.16);
  border: 1px solid rgba(229, 9, 20, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-lead .shield svg {
  width: 24px;
  height: 24px;
  stroke: var(--crimson);
}
.trust-lead h4 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 800;
}
.trust-lead p {
  font-size: 13px;
  color: var(--muted);
}
.badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.stripe-info {
  margin-top: 14px;
  font-size: 12.5px;
}
.stripe-info summary {
  color: var(--crimson);
  cursor: pointer;
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
}
.stripe-info summary::-webkit-details-marker {
  display: none;
}
.stripe-info summary::after {
  content: "▸";
  font-size: 10px;
  transition: 0.2s;
}
.stripe-info[open] summary::after {
  transform: rotate(90deg);
}
.stripe-info p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 560px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 11px 16px;
  transition: 0.2s;
}
.badge:hover {
  border-color: rgba(229, 9, 20, 0.5);
}
.badge svg {
  width: 18px;
  height: 18px;
  stroke: #43e08b;
  flex-shrink: 0;
}
.badge.ins svg {
  stroke: var(--crimson);
}
.badge span {
  font-size: 13px;
  font-weight: 600;
}
.badge small {
  display: block;
  font-size: 10.5px;
  color: var(--muted);
  font-weight: 400;
  font-family: var(--mono);
}

/* ───────── How it works ───────── */
.steps3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.s3 {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
  position: relative;
}
.s3 .no {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--crimson);
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
}
.s3 h3 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}
.s3 p {
  font-size: 14px;
  color: var(--muted);
}

/* ───────── CTA ───────── */
.cta {
  text-align: center;
  padding: 90px 0;
}
.cta-card {
  background: linear-gradient(160deg, #1c0608, #0d0202);
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: 28px;
  padding: 64px 40px;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.2), transparent 65%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}
.cta-card h2 {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  position: relative;
  margin-bottom: 16px;
}
.cta-card p {
  color: #c9b9ba;
  font-size: 18px;
  max-width: 520px;
  margin: 0 auto 32px;
  position: relative;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
}

/* ───────── Footer ───────── */
footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 40px;
}
.foot-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.foot-brand {
  max-width: 300px;
}
.foot-brand .logo {
  margin-bottom: 14px;
}
.foot-brand p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}
.foot-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.foot-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 0;
  color: #bdbdbd;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
/* Beats the display:inline-flex above, so js/social-links.js can hide an
   icon the admin has left unset. */
.foot-social a[hidden] {
  display: none;
}
.foot-social a:hover {
  color: #fff;
  border-color: var(--crimson);
  background: var(--crimson);
}
.foot-social svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}
.foot-cols {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.fcol h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted-2);
  font-family: var(--mono);
  margin-bottom: 16px;
}
.fcol a {
  display: block;
  font-size: 14px;
  color: #bdbdbd;
  margin-bottom: 11px;
  transition: color 0.2s;
}
.fcol a:hover {
  color: var(--crimson);
}
.legal {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.legal .notice {
  font-size: 12px;
  color: var(--muted-2);
  max-width: 640px;
  line-height: 1.6;
}
.legal .copy {
  font-size: 12px;
  color: var(--muted-2);
  font-family: var(--mono);
}

/* ───────── AI Concierge ───────── */
.concierge {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 80;
}
.cc-bubble {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--crimson);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 34px -8px rgba(229, 9, 20, 0.8);
  transition: transform 0.2s;
  position: relative;
}
.cc-bubble:hover {
  transform: scale(1.06);
}
.cc-bubble svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
}
.cc-bubble .badge-n {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  color: var(--crimson);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  border: 2px solid var(--bg);
}
.cc-panel {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 340px;
  max-width: calc(100vw - 40px);
  max-height: min(75vh, 620px);
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.9);
  transform-origin: bottom right;
  opacity: 0;
  transform: scale(0.85) translateY(10px);
  pointer-events: none;
  transition: 0.22s ease;
}
.cc-panel.open {
  opacity: 1;
  transform: scale(1) translateY(0);
  pointer-events: auto;
}
.cc-head {
  flex: 0 0 auto;
  background: linear-gradient(135deg, #1c0608, #160404);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-bottom: 1px solid var(--line);
}
.cc-head .av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cc-head .av svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}
.cc-head h4 {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
}
.cc-head .stat {
  font-size: 11px;
  color: #43e08b;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--mono);
}
.cc-head .stat::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #43e08b;
}
.cc-body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 18px;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.msg {
  max-width: 84%;
  padding: 11px 14px;
  border-radius: 14px;
  font-size: 13.5px;
  line-height: 1.5;
}
.msg.bot {
  background: #1f1f1f;
  border: 1px solid var(--line);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.msg.user {
  background: var(--crimson);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  color: #fff;
}
.msg.bot b {
  color: var(--crimson);
}
/* Quick replies: every FAQ entry is a chip, so the strip scrolls
   on its own instead of pushing the input field out of the panel. */
.chips-head {
  flex: 0 0 auto;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 18px 0;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9a9a9a;
}
.chips-head .hint {
  text-transform: none;
  letter-spacing: 0;
  color: #6d6d6d;
}
.chips {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 8px;
  padding: 10px 18px 12px;
  max-height: 168px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
}
.cc-body::-webkit-scrollbar,
.chips::-webkit-scrollbar {
  width: 6px;
}
.cc-body::-webkit-scrollbar-thumb,
.chips::-webkit-scrollbar-thumb {
  background: var(--line-strong);
  border-radius: 3px;
}
.cc-body::-webkit-scrollbar-track,
.chips::-webkit-scrollbar-track {
  background: transparent;
}
.chip {
  font-size: 12px;
  font-family: var(--mono);
  background: transparent;
  border: 1px solid var(--line-strong);
  color: #cfcfcf;
  border-radius: 20px;
  padding: 7px 12px;
  cursor: pointer;
  transition: 0.18s;
  text-align: left;
  max-width: 100%;
}
.chip:hover,
.chip:focus-visible {
  border-color: var(--crimson);
  color: #fff;
}
.cc-input {
  flex: 0 0 auto;
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
}
.cc-input input {
  flex: 1;
  background: #101010;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  color: #fff;
  font-family: var(--body);
  font-size: 13px;
  outline: none;
}
.cc-input input:focus {
  border-color: var(--crimson);
}
.cc-input button {
  background: var(--crimson);
  border: none;
  border-radius: 10px;
  width: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cc-input button svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
}

/* ───────── Announcement Modal ───────── */
.ann-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.ann-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.ann-modal {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  max-width: 620px;
  width: 100%;
  padding: 44px 36px 36px;
  text-align: center;
  position: relative;
  transform: scale(0.88) translateY(18px);
  opacity: 0;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.35s ease;
}
.ann-overlay.open .ann-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.ann-modal .x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1f1f1f;
  border: 1px solid var(--line);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.ann-modal .x:hover {
  background: var(--crimson);
}
.ann-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ann-icon .lock-bg {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: rgba(229, 9, 20, 0.12);
  border: 1px solid rgba(229, 9, 20, 0.4);
  animation: annGlow 2.4s ease-in-out infinite;
}
@keyframes annGlow {
  0%,
  100% {
    box-shadow: 0 0 20px -4px rgba(229, 9, 20, 0.3);
  }
  50% {
    box-shadow: 0 0 32px -2px rgba(229, 9, 20, 0.5);
  }
}
.ann-icon svg {
  width: 34px;
  height: 34px;
  stroke: var(--crimson);
  position: relative;
  z-index: 1;
}
.ann-particles {
  position: absolute;
  inset: -14px;
  pointer-events: none;
}
.ann-particles span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  animation: annFloat 2.8s ease-in-out infinite;
}
.ann-particles span:nth-child(1) {
  background: var(--crimson);
  top: 0;
  left: 20%;
  animation-delay: 0s;
}
.ann-particles span:nth-child(2) {
  background: #ff404a;
  top: 10%;
  right: 10%;
  animation-delay: 0.4s;
  width: 4px;
  height: 4px;
}
.ann-particles span:nth-child(3) {
  background: var(--crimson);
  bottom: 10%;
  left: 10%;
  animation-delay: 0.8s;
  width: 3px;
  height: 3px;
}
.ann-particles span:nth-child(4) {
  background: #ff6b6b;
  top: 30%;
  left: 0;
  animation-delay: 1.2s;
  width: 4px;
  height: 4px;
}
.ann-particles span:nth-child(5) {
  background: var(--crimson);
  bottom: 0;
  right: 20%;
  animation-delay: 1.6s;
}
@keyframes annFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-6px) scale(1.2);
    opacity: 1;
  }
}
.ann-modal h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.ann-modal p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.ann-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.ann-btns .btn {
  min-width: 0;
  flex: 1 1 0;
}
.ann-close-animating .ann-modal {
  transform: scale(0.92) translateY(10px);
  opacity: 0;
}
.ann-close-animating {
  opacity: 0 !important;
  pointer-events: none !important;
}
@media (max-width: 621px) {
  .ann-modal {
    padding: 36px 22px 28px;
    border-radius: 18px;
  }
  .ann-modal h3 {
    font-size: 22px;
  }
  .ann-btns {
    flex-direction: column;
  }
  .ann-btns .btn {
    width: 100%;
  }
}

/* ───────── Modal ───────── */
.overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}
.overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: 24px;
  max-width: 460px;
  width: 100%;
  padding: 40px 36px;
  text-align: center;
  position: relative;
  transform: scale(0.92);
  transition: 0.25s;
}
.overlay.open .modal {
  transform: scale(1);
}
.modal .x {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #1f1f1f;
  border: 1px solid var(--line);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .x:hover {
  background: var(--crimson);
}
.modal .lock {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--crimson-soft);
  border: 1px solid rgba(229, 9, 20, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.modal .lock svg {
  width: 30px;
  height: 30px;
  stroke: var(--crimson);
}
.modal h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}
.modal p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 26px;
}
.modal .wl {
  display: flex;
  gap: 10px;
}
.modal .wl input {
  flex: 1;
  background: #101010;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 14px 16px;
  color: #fff;
  font-family: var(--body);
  font-size: 14px;
  outline: none;
}
.modal .wl input:focus {
  border-color: var(--crimson);
}
.modal .ok {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.modal .ok.show {
  display: flex;
}
.modal .ok .tick {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(67, 224, 139, 0.14);
  border: 1px solid rgba(67, 224, 139, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal .ok .tick svg {
  width: 28px;
  height: 28px;
  stroke: #43e08b;
}
.modal .ok p {
  color: #43e08b;
  font-weight: 600;
  margin: 0;
}

/* ───────── Reveal ───────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* ───────── Lang switch ───────── */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
}
.lang-switch span {
  color: var(--muted);
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 2px;
  transition: color 0.2s;
}
.lang-btn.active {
  color: #fff;
}
.lang-btn:hover {
  color: #fff;
}

/* ───────── Legal / Policy pages ───────── */
.legal-page {
  padding: 64px 0 96px;
}
.legal-page .wrap {
  max-width: var(--maxw);
}
.legal-head {
  margin-bottom: 48px;
}
.legal-head .eyebrow {
  margin-bottom: 12px;
}
.legal-head h1 {
  font-family: var(--display);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.legal-head .updated {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
}
.legal-doc {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 48px;
}
.legal-doc h2 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 16px;
  letter-spacing: -0.01em;
  color: #fff;
}
.legal-doc h2:first-child {
  margin-top: 0;
}
.legal-doc h3 {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  margin: 24px 0 10px;
  color: #e0e0e0;
}
.legal-doc p {
  font-size: 15px;
  color: #c0c0c0;
  line-height: 1.7;
  margin-bottom: 14px;
}
.legal-doc p b,
.legal-doc strong {
  color: #fff;
  font-weight: 600;
}
.legal-doc .contact-block {
  margin-top: 12px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.legal-doc .contact-block p {
  margin-bottom: 6px;
  font-size: 14px;
}
.legal-doc .contact-block p:last-child {
  margin-bottom: 0;
}

/* ───────── Coming soon card ───────── */
.soon-card {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 48px;
}
.soon-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(229, 9, 20, 0.08);
  border: 1px solid rgba(229, 9, 20, 0.28);
}
.soon-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--crimson);
  stroke-linecap: round;
  stroke-linejoin: round;
}
.soon-badge {
  display: inline-block;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--crimson);
  border: 1px solid rgba(229, 9, 20, 0.35);
  border-radius: 20px;
  padding: 6px 14px;
  margin-bottom: 22px;
}
.soon-card p {
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.soon-card .btn {
  margin-top: 18px;
}

@media (max-width: 480px) {
  .soon-card {
    padding: 36px 24px;
  }
  .legal-page {
    padding: 40px 0 64px;
  }
  .legal-doc {
    padding: 28px;
    border-radius: 16px;
  }
  .legal-head h1 {
    font-size: 32px;
  }
}

/* ───────── Responsive ───────── */
@media (max-width: 980px) {
  nav.links {
    display: none;
  }
  .burger {
    display: flex;
  }
  .nav-cta .btn {
    display: none;
  }

  /* Mobile menu open state */
  header.nav.open nav.links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(22, 22, 22, 0.98);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
    z-index: 49;
  }
  header.nav.open nav.links a {
    padding: 14px 0;
    font-size: 16px;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--line);
  }

  /* Burger → X animation */
  header.nav.open .burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  header.nav.open .burger span:nth-child(2) {
    opacity: 0;
  }
  header.nav.open .burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero h1 {
    font-size: 46px;
  }
  .phone-wrap {
    order: 1;
  }
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dual {
    grid-template-columns: 1fr;
  }
  .steps3 {
    grid-template-columns: 1fr;
  }
  .trust-inner {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
  .badges {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .wrap {
    padding: 0 16px;
  }
  .hero {
    padding: 54px 0 60px;
  }
  .hero h1 {
    font-size: 36px;
  }
  .hero .sub {
    font-size: 16px;
    max-width: 100%;
  }
  .hero-actions .btn {
    flex: 1;
  }
  .sec-head h2,
  .cta-card h2 {
    font-size: 30px;
  }
  .section-pad {
    padding: 64px 0;
  }
  .cat-grid {
    grid-template-columns: 1fr;
  }
  .phone {
    width: 268px;
    height: 546px;
  }
  .phone-wrap::after {
    width: 200px;
  }
  .modal {
    padding: 32px 22px;
    max-width: calc(100vw - 40px);
  }
  .modal .wl {
    flex-direction: column;
  }
  .concierge {
    bottom: 18px;
    right: 18px;
  }
  .cc-bubble {
    width: 54px;
    height: 54px;
  }
  .cc-panel {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    max-height: min(78vh, 560px);
  }
  .cc-body {
    padding: 14px;
  }
  .chips-head {
    padding: 9px 14px 0;
  }
  .chips {
    max-height: 132px;
    padding: 8px 14px 10px;
    gap: 6px;
  }
  .chip {
    font-size: 11.5px;
    padding: 6px 10px;
  }
  .msg {
    max-width: 90%;
  }
}
/* Short viewports (landscape phones): the header, chip strip and input
   have to fit inside the panel before the chat body takes what is left,
   otherwise the input gets clipped off the bottom. */
@media (max-height: 500px) {
  .concierge {
    bottom: 14px;
  }
  .cc-panel {
    bottom: 62px;
    max-height: calc(100vh - 82px);
  }
  .cc-head {
    padding: 8px 12px;
    gap: 9px;
  }
  .cc-head .av {
    width: 30px;
    height: 30px;
  }
  .cc-head .av svg {
    width: 16px;
    height: 16px;
  }
  .cc-body {
    padding: 10px 14px;
    gap: 8px;
  }
  .chips-head {
    display: none;
  }
  .chips {
    max-height: 60px;
    padding: 8px 14px;
  }
  .cc-input {
    padding: 8px 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .route-line {
    stroke-dashoffset: 0;
  }
}
