/* ===================================================================
   PixelCargo — Landing page (dark-luxe, futuristic / Awwwards-inspired)
   Strict palette: black / white / grays + Pixel gold (#d4af37, #b8932e)
   + subtle red for warnings only. No other colors anywhere.
   Vanilla CSS, no frameworks. Respects prefers-reduced-motion.
   =================================================================== */

:root {
  /* gold accent */
  --gold: #d4af37;
  --gold-deep: #b8932e;
  --gold-glow: rgba(212, 175, 55, .55);
  --gold-soft: rgba(212, 175, 55, .12);
  --gold-line: rgba(212, 175, 55, .28);

  /* dark-luxe neutrals (marketing landing leads dark) */
  --bg: #0a0a0b;
  --bg-2: #0f0f11;
  --surface: #141416;
  --surface-2: #1a1a1d;
  --border: #26262b;
  --border-strong: #34343a;
  --text: #f4f4f2;
  --text-2: #a6a6a2;
  --text-3: #6f6f6c;

  /* subtle red — warnings only */
  --warn: #c2564a;

  --maxw: 1180px;
  --r: 16px;
  --r-lg: 22px;
  --ease: cubic-bezier(.22, 1, .36, .58);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
em { font-style: normal; color: var(--gold); }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(72px, 11vw, 140px) 0; }

/* shared icon sizing */
.icon { width: 1em; height: 1em; stroke: currentColor; stroke-width: 2;
  fill: none; stroke-linecap: round; stroke-linejoin: round; vertical-align: -.12em; }

/* brand mark (real gold Pixel logo) */
.brand-mark { display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; color: var(--gold); flex: 0 0 auto; }
.brand-mark .pixel-mark { width: 78%; height: 78%; filter: drop-shadow(0 0 6px var(--gold-glow)); }

/* =================== BUTTONS =================== */
.btn {
  --pad: 13px 22px;
  display: inline-flex; align-items: center; gap: 9px;
  padding: var(--pad); border-radius: 999px;
  font-weight: 600; font-size: 15px; letter-spacing: .2px;
  cursor: pointer; border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .3s var(--ease),
    background .25s, color .25s, border-color .25s;
  white-space: nowrap; will-change: transform;
}
.btn .icon { font-size: 17px; }
.btn-sm { --pad: 9px 16px; font-size: 14px; }
.btn-lg { --pad: 16px 30px; font-size: 16px; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
  background: linear-gradient(135deg, #e6c456, var(--gold) 55%, var(--gold-deep));
  color: #14110a;
  box-shadow: 0 6px 24px rgba(212, 175, 55, .28), inset 0 1px 0 rgba(255, 255, 255, .35);
}
.btn-primary:hover { box-shadow: 0 10px 38px var(--gold-glow), inset 0 1px 0 rgba(255, 255, 255, .4); }

.btn-line {
  background: transparent; color: var(--text);
  border-color: var(--border-strong);
}
.btn-line:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 0 0 1px var(--gold-line); }

.btn-ghost {
  background: rgba(255, 255, 255, .04); color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--gold-line); color: var(--gold); }

/* =================== NAV =================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s, padding .3s;
  padding: 10px 0; border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10, 10, 11, .72);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.brand { display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--display); font-weight: 700; font-size: 19px; letter-spacing: -.2px; }
.brand-word { background: linear-gradient(90deg, #fff, #cfcfca); -webkit-background-clip: text;
  background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 15px; color: var(--text-2); position: relative; padding: 4px 0;
  transition: color .2s; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -2px; height: 1.5px;
  width: 0; background: var(--gold); transition: width .28s var(--ease); }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-burger { display: none; width: 42px; height: 38px; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .04); border: 1px solid var(--border); border-radius: 11px;
  color: var(--text); cursor: pointer; font-size: 20px; }

/* =================== HERO =================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 90px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-grid-lines {
  position: absolute; inset: -20% -10%;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 60% 35%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 60% 35%, #000 0%, transparent 75%);
  opacity: .5;
}
.hero-mesh { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.hero-mesh-a { width: 620px; height: 620px; top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(212, 175, 55, .28), transparent 65%); }
.hero-mesh-b { width: 520px; height: 520px; bottom: -220px; left: -140px;
  background: radial-gradient(circle, rgba(255, 255, 255, .06), transparent 60%); }
.hero-grain {
  position: absolute; inset: 0; opacity: .04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-wrap { position: relative; z-index: 2; display: grid;
  grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px; border-radius: 999px; font-size: 13.5px; font-weight: 500;
  color: var(--text-2); background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border); margin-bottom: 24px; letter-spacing: .3px; }
.hero-badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 var(--gold-glow); animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 var(--gold-glow); }
  70% { box-shadow: 0 0 0 9px rgba(212, 175, 55, 0); } 100% { box-shadow: 0 0 0 0 transparent; } }

.hero h1 { font-family: var(--display); font-weight: 700;
  font-size: clamp(44px, 7.2vw, 86px); line-height: .98; letter-spacing: -.03em;
  margin-bottom: 22px; }
.hero h1 .line { display: block; }
.hero h1 .line:first-child { color: #fff; opacity: 0; transform: translateY(22px);
  animation: heroRise .8s var(--ease) .15s forwards; }
.gold-grad { background: linear-gradient(100deg, var(--gold-deep), #f1d779 45%, var(--gold) 70%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  opacity: 0; transform: translateY(22px); animation: heroRise .8s var(--ease) .3s forwards;
  filter: drop-shadow(0 4px 24px rgba(212, 175, 55, .18)); }
@keyframes heroRise { to { opacity: 1; transform: none; } }

.hero-sub { font-size: clamp(16px, 1.6vw, 19px); color: var(--text-2); max-width: 540px;
  margin-bottom: 32px; opacity: 0; transform: translateY(18px);
  animation: heroRise .8s var(--ease) .45s forwards; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px;
  opacity: 0; transform: translateY(18px); animation: heroRise .8s var(--ease) .58s forwards; }
.hero-note { font-size: 14px; color: var(--text-3); display: flex; align-items: center; gap: 8px;
  opacity: 0; animation: heroRise .8s var(--ease) .7s forwards; }
.hero-note .icon { color: var(--gold); }

/* hero flow visual */
.hero-visual { position: relative; }
.flowviz { position: relative; aspect-ratio: 420/360; }
.flowviz-svg { width: 100%; height: 100%; overflow: visible; }
.fv-path-glow { stroke-dasharray: 6 10; opacity: .6;
  filter: drop-shadow(0 0 6px var(--gold-glow)); animation: dash 6s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -160; } }
.fv-node circle:first-child { animation: nodePulse 3s ease-in-out infinite; animation-delay: var(--d); }
@keyframes nodePulse { 0%, 100% { opacity: .35; } 50% { opacity: .8; } }
.fv-packet { filter: drop-shadow(0 0 6px var(--gold)); }
.flowviz-tags { position: absolute; inset: 0; pointer-events: none; }
.fv-tag { position: absolute; display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 13px; font-size: 13px; font-weight: 500; border-radius: 11px;
  background: rgba(20, 20, 22, .82); border: 1px solid var(--border-strong);
  color: var(--text); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .45); }
.fv-tag .icon { color: var(--gold); font-size: 15px; }
.fv-tag-1 { top: 2%; left: -4%; animation: floaty 5s ease-in-out infinite; }
.fv-tag-2 { top: 44%; left: 46%; animation: floaty 5.6s ease-in-out infinite .6s; }
.fv-tag-3 { bottom: 6%; right: -4%; animation: floaty 5.2s ease-in-out infinite .3s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.hero-scroll { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 3; width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--border); border-radius: 50%; color: var(--text-2);
  background: rgba(255, 255, 255, .02); animation: bob 2.4s ease-in-out infinite; }
.hero-scroll:hover { color: var(--gold); border-color: var(--gold-line); }
.hero-scroll .icon { font-size: 18px; }
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

/* =================== TRUST / STATS =================== */
.trust { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-2); padding: 40px 0; }
.trust-by { display: flex; align-items: center; gap: 10px; justify-content: center;
  color: var(--text-2); font-size: 14.5px; margin-bottom: 30px; }
.trust-by a { color: var(--gold-deep); }
.trust-by a:hover { color: var(--gold); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat { text-align: center; padding: 18px 12px; border: 1px solid var(--border);
  border-radius: var(--r); background: rgba(255, 255, 255, .015); }
.stat-num { font-family: var(--display); font-weight: 700; font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.05; color: var(--gold);
  background: linear-gradient(180deg, #f1d779, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-num.stat-text { font-size: clamp(18px, 2vw, 24px); }
.stat-lab { margin-top: 8px; font-size: 13px; color: var(--text-3); letter-spacing: .3px; }

/* =================== SECTION HEAD =================== */
.sec-head { max-width: 680px; margin: 0 auto clamp(40px, 6vw, 68px); text-align: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
  letter-spacing: 1.4px; text-transform: uppercase; color: var(--gold-deep);
  padding: 6px 14px; border: 1px solid var(--gold-line); border-radius: 999px;
  background: var(--gold-soft); margin-bottom: 20px; }
.eyebrow .icon { font-size: 15px; }
.sec-head h2 { font-family: var(--display); font-weight: 700;
  font-size: clamp(30px, 4.4vw, 50px); line-height: 1.04; letter-spacing: -.025em; color: #fff; }
.sec-head p { margin-top: 16px; font-size: clamp(15px, 1.5vw, 18px); color: var(--text-2); }

/* =================== FEATURES =================== */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feat { position: relative; padding: 28px 24px; border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--surface), var(--bg-2));
  border: 1px solid var(--border); overflow: hidden;
  transition: transform .35s var(--ease), border-color .3s, box-shadow .35s; will-change: transform; }
.feat::before { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, var(--gold-line), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .3s; }
.feat:hover { border-color: var(--border-strong);
  box-shadow: 0 22px 60px rgba(0, 0, 0, .5); }
.feat:hover::before { opacity: 1; }
.feat-ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: var(--gold-soft); border: 1px solid var(--gold-line); color: var(--gold);
  font-size: 24px; margin-bottom: 18px; }
.feat h3 { font-size: 17.5px; font-weight: 600; margin-bottom: 9px; color: #fff; letter-spacing: -.01em; }
.feat p { font-size: 14.5px; color: var(--text-2); }
.feat.usp { grid-column: span 2; background:
  radial-gradient(120% 120% at 0% 0%, rgba(212, 175, 55, .12), transparent 55%), var(--surface);
  border-color: var(--gold-line); }
.feat.usp h3 { font-size: 22px; }
.feat .tag { position: absolute; top: 20px; right: 20px; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; color: #14110a; background: var(--gold);
  padding: 4px 11px; border-radius: 999px; }

/* =================== STEPS =================== */
.steps { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stepper { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step-track { position: absolute; left: 12%; right: 12%; top: 92px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-line), var(--gold), var(--gold-line), transparent);
  z-index: 0; }
.step { position: relative; z-index: 1; padding: 24px 18px; border-radius: var(--r);
  background: var(--surface); border: 1px solid var(--border); text-align: left; }
.step .lane { font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-3); }
.step.tms .lane { color: var(--gold-deep); }
.step-n { position: absolute; top: 18px; right: 18px; font-family: var(--display); font-weight: 700;
  font-size: 14px; color: var(--text-3); }
.step-ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: var(--gold-soft); border: 1px solid var(--gold-line); color: var(--gold);
  font-size: 21px; margin: 14px 0 12px; }
.step h4 { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 5px; }
.step p { font-size: 13.5px; color: var(--text-2); }

/* =================== COMPARE =================== */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 980px; margin: 0 auto; }
.cmp { padding: 30px 28px; border-radius: var(--r-lg); border: 1px solid var(--border);
  background: var(--surface); }
.cmp h3 { display: flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 600;
  margin-bottom: 18px; color: #fff; }
.cmp ul { list-style: none; display: grid; gap: 13px; }
.cmp li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--text-2); }
.cmp li .icon { flex: 0 0 auto; font-size: 17px; margin-top: 2px; }
.cmp.old { background: var(--bg-2); }
.cmp.old h3 .icon, .cmp.old li .icon { color: var(--warn); }
.cmp.new { border-color: var(--gold-line);
  background: radial-gradient(120% 120% at 100% 0%, rgba(212, 175, 55, .1), transparent 55%), var(--surface); }
.cmp.new h3 .icon, .cmp.new li .icon { color: var(--gold); }

/* =================== PRICING =================== */
.price-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; max-width: 940px; margin: 0 auto;
  align-items: stretch; }
.price-card { position: relative; padding: 36px 32px; border-radius: var(--r-lg);
  background: var(--surface); border: 1px solid var(--border);
  transition: transform .35s var(--ease), box-shadow .35s, border-color .3s; will-change: transform; }
.price-card.featured { border-color: var(--gold-line);
  background: radial-gradient(130% 110% at 50% 0%, rgba(212, 175, 55, .14), transparent 60%), var(--surface);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .55); }
.price-badge { position: absolute; top: -13px; left: 32px; display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: .5px; color: #14110a;
  background: var(--gold); padding: 6px 14px; border-radius: 999px;
  box-shadow: 0 6px 18px var(--gold-glow); }
.price-badge .icon { font-size: 14px; }
.price-card h3 { font-family: var(--display); font-size: 23px; font-weight: 600; color: #fff;
  margin-bottom: 8px; }
.price-card .sub { font-size: 14.5px; color: var(--text-2); margin-bottom: 22px; }
.price-amt { display: flex; align-items: baseline; gap: 12px; margin-bottom: 22px;
  padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.price-amt .amt { font-family: var(--display); font-weight: 700; font-size: 54px; line-height: 1;
  background: linear-gradient(180deg, #f1d779, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.price-amt .amt-sm { font-size: 38px; }
.price-amt .per { font-size: 13.5px; color: var(--text-3); }
.price-card ul { list-style: none; display: grid; gap: 12px; margin-bottom: 26px; }
.price-card li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--text-2); }
.price-card li .icon { color: var(--gold); flex: 0 0 auto; font-size: 17px; margin-top: 2px; }
.price-foot { margin-top: 16px; text-align: center; font-size: 12.5px; color: var(--text-3); }

.buy-success { display: none; text-align: center; padding: 20px 0; }
.buy-success.show { display: block; }
.bs-ico { width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 18px;
  background: var(--gold-soft); border: 1px solid var(--gold-line); color: var(--gold); font-size: 30px; }
.buy-success h4 { font-size: 22px; color: #fff; margin-bottom: 10px; font-family: var(--display); }
.buy-success p { font-size: 14.5px; color: var(--text-2); max-width: 340px; margin: 0 auto; }

/* =================== CONTACT =================== */
.contact { background: var(--bg-2); border-top: 1px solid var(--border); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-intro h2 { font-family: var(--display); font-weight: 700; font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.05; letter-spacing: -.02em; color: #fff; margin: 6px 0 14px; }
.contact-intro > p { font-size: 16px; color: var(--text-2); margin-bottom: 26px; }
.contact-list { list-style: none; display: grid; gap: 14px; margin-bottom: 30px; }
.contact-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-2); }
.contact-list li .icon { color: var(--gold); font-size: 19px; }
.contact-list a.mailto { color: var(--gold-deep); }
.contact-list a.mailto:hover { color: var(--gold); }
.faq { display: grid; gap: 10px; }
.faq details { border: 1px solid var(--border); border-radius: 12px; background: var(--surface);
  padding: 0 16px; transition: border-color .2s; }
.faq details[open] { border-color: var(--gold-line); }
.faq summary { cursor: pointer; list-style: none; padding: 14px 0; font-size: 14.5px; font-weight: 500;
  color: var(--text); display: flex; align-items: center; justify-content: space-between; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: ''; width: 9px; height: 9px; border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold); transform: rotate(45deg); transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq p { font-size: 14px; color: var(--text-2); padding: 0 0 14px; }

.contact-form { padding: 30px 28px; border-radius: var(--r-lg); background: var(--surface);
  border: 1px solid var(--border); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--text-2);
  margin-bottom: 7px; letter-spacing: .2px; }
.field input, .field textarea { width: 100%; padding: 12px 14px; border-radius: 11px;
  background: var(--bg-2); border: 1px solid var(--border); color: var(--text);
  font-family: inherit; font-size: 15px; transition: border-color .2s, box-shadow .2s; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft); }
.form-foot { margin-top: 14px; font-size: 12.5px; color: var(--text-3); text-align: center; }
.form-foot strong { color: var(--gold-deep); }

/* =================== FOOTER =================== */
.footer { background: #070708; border-top: 1px solid var(--border); padding: 64px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 2fr; gap: 48px; padding-bottom: 44px;
  border-bottom: 1px solid var(--border); }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 14.5px; color: var(--text-2); max-width: 320px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px;
  border: 1px solid var(--border); color: var(--text-2); font-size: 18px; transition: all .2s; }
.footer-social a:hover { color: var(--gold); border-color: var(--gold-line); background: var(--gold-soft); }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.footer-col h5 { font-size: 12px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14.5px; color: var(--text-2); margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 26px; font-size: 13px; color: var(--text-3); }
.footer-logo { display: inline-flex; align-items: center; gap: 9px; }
.footer-logo .brand-mark { width: 22px; height: 22px; }

/* =================== REVEAL ANIMATION =================== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =================== WELCOME (first visit) =================== */
/* Non-blocking, dismissible corner toast. The outer wrapper never intercepts
   clicks (pointer-events:none) — only the card does — so it can never block the
   hero or CTAs beneath it. Reveal is scroll-/idle-gated in index.html so it
   doesn't land on the hero headline on load. */
.welcome { position: fixed; right: 22px; bottom: 22px; z-index: 200; width: min(340px, calc(100vw - 44px));
  pointer-events: none;
  opacity: 0; transform: translateY(20px) scale(.96); transition: opacity .4s var(--ease), transform .4s var(--ease); }
.welcome[hidden] { display: none; }
.welcome.show { opacity: 1; transform: none; }
.welcome .welcome-card { pointer-events: auto; }
.welcome-card { position: relative; display: flex; gap: 14px; padding: 18px 20px;
  border-radius: var(--r-lg); background: rgba(20, 20, 22, .92);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid var(--gold-line); box-shadow: 0 22px 60px rgba(0, 0, 0, .6); }
.welcome-mark { width: 34px; height: 34px; flex: 0 0 auto; }
.welcome-body { display: flex; flex-direction: column; gap: 4px; }
.welcome-body strong { font-size: 15px; color: #fff; font-family: var(--display); }
.welcome-body span { font-size: 13px; color: var(--text-2); line-height: 1.5; }
.welcome-cta { display: flex; gap: 8px; margin-top: 12px; }
.welcome-x { position: absolute; top: 10px; right: 10px; width: 26px; height: 26px; display: grid;
  place-items: center; background: rgba(255, 255, 255, .05); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text-2); cursor: pointer; font-size: 14px; }
.welcome-x:hover { color: var(--gold); border-color: var(--gold-line); }

/* =================== CURSOR DOT =================== */
.cursor-dot { position: fixed; top: 0; left: 0; width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); pointer-events: none; z-index: 300; mix-blend-mode: screen;
  opacity: 0; transition: width .25s, height .25s, opacity .3s; box-shadow: 0 0 14px var(--gold-glow); }
body.has-cursor-dot .cursor-dot { opacity: .85; }
.cursor-dot.big { width: 34px; height: 34px; margin: -11px 0 0 -11px; opacity: .35; }

/* ===================================================================
   LOGISTICS MOTION  (gold-on-dark, line-art only — see js/landing-fx.js)
   All heavy motion is rAF/IntersectionObserver-gated and disabled under
   prefers-reduced-motion / touch where it would jank.
   =================================================================== */

/* --- Shipment-status ticker (thin top bar above the nav) --- */
.shipline {
  position: fixed; inset: 0 0 auto 0; z-index: 110; height: 30px;
  display: flex; align-items: center; overflow: hidden;
  background: rgba(7, 7, 8, .92); border-bottom: 1px solid var(--border);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  font-size: 12px; color: var(--text-2); letter-spacing: .2px;
}
.shipline-live { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 7px;
  padding: 0 14px 0 18px; height: 100%; font-weight: 600; color: var(--gold);
  background: rgba(212, 175, 55, .06); border-right: 1px solid var(--border); }
.shipline-live .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  box-shadow: 0 0 0 0 var(--gold-glow); animation: pulse 2s infinite; }
.shipline-track { flex: 1 1 auto; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.shipline-row { display: inline-flex; white-space: nowrap; will-change: transform;
  animation: shipScroll 42s linear infinite; }
.shipline-row span { display: inline-flex; align-items: center; gap: 7px; padding: 0 26px; }
.shipline-row .icon { color: var(--gold-deep); font-size: 14px; }
.shipline-row b { color: var(--text); font-weight: 600; }
@keyframes shipScroll { from { transform: translate3d(0,0,0); } to { transform: translate3d(-50%,0,0); } }
/* push the page down so the ticker doesn't cover the nav */
body.has-shipline .nav { top: 30px; }

/* --- Counter "live" telemetry feel --- */
.stat { position: relative; overflow: hidden; }
.stat-num { position: relative; }
.stat-num::after { content: ''; position: absolute; right: -3px; top: 8%; width: 2px; height: 50%;
  background: var(--gold); opacity: 0; }
.stat.live .stat-num::after { animation: tick 2.6s ease-in-out infinite; }
@keyframes tick { 0%, 92%, 100% { opacity: 0; } 94%, 98% { opacity: .8; } }
.stat-spark { position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-line), transparent);
  transform: scaleX(0); transform-origin: left; }
.stat.live .stat-spark { animation: sweep 4.2s ease-in-out infinite; }
@keyframes sweep { 0% { transform: scaleX(0); opacity: 0; } 12% { opacity: 1; }
  60% { transform: scaleX(1); opacity: 0; } 100% { transform: scaleX(1); opacity: 0; } }

/* --- Warehouse rack-grid texture (steps section background) --- */
.steps { position: relative; overflow: hidden; }
.rack-grid { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000, transparent 80%); }
.steps .wrap { position: relative; z-index: 1; }
.rack-cell { fill: none; stroke: var(--border); stroke-width: 1; }
.rack-bin { fill: var(--gold); opacity: 0; transform-box: fill-box; transform-origin: center; }
.rack-grid.on .rack-bin { animation: binLight 5.5s ease-in-out infinite; }
@keyframes binLight { 0%, 100% { opacity: 0; } 6%, 14% { opacity: .55; } 20% { opacity: 0; } }

/* --- How-it-works: drawn route + travelling cargo + conveyor --- */
.step-track { overflow: visible; }
.route-svg { position: absolute; left: 0; right: 0; top: 92px; height: 60px; width: 100%;
  z-index: 0; pointer-events: none; overflow: visible; }
.route-base { fill: none; stroke: var(--border-strong); stroke-width: 2; opacity: .5; }
.route-draw { fill: none; stroke: url(#routeGold); stroke-width: 2.5; stroke-linecap: round;
  filter: drop-shadow(0 0 5px var(--gold-glow)); }
.route-svg.draw .route-draw { animation: routeDraw 2.2s var(--ease) forwards; }
@keyframes routeDraw { to { stroke-dashoffset: 0; } }
/* travelling cargo node (gold box) once the route has drawn */
.route-cargo { opacity: 0; }
.route-svg.draw .route-cargo { animation: cargoFade .4s ease 1.9s forwards; }
.route-cargo rect { fill: #0a0a0b; stroke: var(--gold); stroke-width: 2; rx: 2; }
.route-cargo line { stroke: var(--gold); stroke-width: 1.2; opacity: .7; }
@keyframes cargoFade { to { opacity: 1; } }

/* step micro-motion on hover */
.step { overflow: hidden; }
.step .step-ico { transition: transform .4s var(--ease), background .3s, border-color .3s; }
.step:hover .step-ico { border-color: var(--gold); background: rgba(212, 175, 55, .18); }
/* the transport "Assign" step: wheel turns on hover */
.step.tms[data-fx="wheel"]:hover .step-ico .icon { animation: wheelRoll 1.4s linear infinite; }
@keyframes wheelRoll { to { transform: rotate(360deg); } }
/* warehouse steps: box nudges along on hover */
.step[data-fx="box"]:hover .step-ico .icon { animation: boxNudge .9s var(--ease) infinite; }
@keyframes boxNudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(4px); } }

/* --- Live-tracking radar pulse on the "Live track" step --- */
.step.tms[data-fx="radar"] .step-ico { position: relative; }
.step.tms[data-fx="radar"] .step-ico::before,
.step.tms[data-fx="radar"] .step-ico::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  border: 1px solid var(--gold); opacity: 0; }
.step.tms[data-fx="radar"].fx-on .step-ico::before { animation: radar 2.8s ease-out infinite; }
.step.tms[data-fx="radar"].fx-on .step-ico::after { animation: radar 2.8s ease-out infinite 1.4s; }
@keyframes radar { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(2.1); opacity: 0; } }

/* --- Scan-line sweep on the traceability feature card --- */
.feat[data-fx="scan"] { position: relative; }
.feat[data-fx="scan"] .scanbar { position: absolute; left: 16px; right: 16px; top: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 10px var(--gold-glow); opacity: 0; pointer-events: none; border-radius: 2px; }
.feat[data-fx="scan"]:hover .scanbar { animation: scanSweep 1.5s ease-in-out infinite; }
@keyframes scanSweep { 0% { top: 14%; opacity: 0; } 12% { opacity: 1; }
  88% { opacity: 1; } 100% { top: 86%; opacity: 0; } }
/* faint barcode behind the scan icon */
.feat[data-fx="scan"] .feat-ico { position: relative; overflow: hidden; }
.feat[data-fx="scan"] .feat-ico::after { content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, var(--gold) 0 1px, transparent 1px 3px);
  opacity: .14; }

/* generic feature card: a gold route segment lights along the bottom on hover */
.feat::after { content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.feat:hover::after { transform: scaleX(1); }

/* --- 3-tier SaaS pricing layout --- */
.price-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 1100px; }
.price-grid-3 .price-amt .amt { font-size: 38px; }

/* --- 4-tier subscription layout (Pilot / Starter / Growth / Enterprise) --- */
.price-grid-4 { grid-template-columns: repeat(4, 1fr); max-width: 1240px; gap: 18px; }
.price-grid-4 .price-card { padding: 30px 24px; }
.price-grid-4 .price-amt .amt { font-size: 34px; }
.price-grid-4 .price-amt .amt-xs { font-size: 26px; }
.price-grid-4 .price-amt { flex-direction: column; align-items: flex-start; gap: 4px; }
.price-grid-4 .price-card h3 { display: flex; align-items: center; gap: 10px; font-size: 21px; }
.price-grid-4 .price-card .sub { min-height: 60px; }
.tier-ico { color: var(--gold); }
.tier-ico .icon { font-size: 20px; }
.price-note { margin: 30px auto 0; max-width: 900px; text-align: center; font-size: 13.5px;
  color: var(--text-2); display: flex; align-items: flex-start; justify-content: center; gap: 9px;
  line-height: 1.55; }
.price-note .icon { color: var(--gold); flex: 0 0 auto; font-size: 18px; margin-top: 1px; }
.price-devnote { margin: 16px auto 0; max-width: 1100px; text-align: center;
  font-size: 13px; color: var(--text-3); }
.price-devnote a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.price-devnote a:hover { color: var(--gold); }

/* =================== RESPONSIVE =================== */
@media (max-width: 1120px) {
  .price-grid.price-grid-4 { grid-template-columns: repeat(2, 1fr); max-width: 680px; }
  .price-grid-4 .price-card .sub { min-height: 0; }
}
@media (max-width: 620px) {
  .price-grid.price-grid-4 { grid-template-columns: 1fr; max-width: 440px; }
}
@media (max-width: 980px) {
  .price-grid-3 { grid-template-columns: 1fr; max-width: 480px; }
  .hero-wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 440px; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat.usp { grid-column: span 2; }
  .stepper { grid-template-columns: repeat(2, 1fr); }
  .step-track, .route-svg { display: none; }
  .compare, .price-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 760px) {
  .nav-links { position: fixed; inset: 64px 14px auto 14px; flex-direction: column; gap: 4px;
    padding: 14px; background: rgba(15, 15, 17, .96); -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px); border: 1px solid var(--border); border-radius: var(--r);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: all .25s; }
  .nav.open .nav-links { transform: none; opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 11px 8px; }
  .nav-burger { display: inline-flex; }
  .nav .btn-ghost { display: none; }
  .nav-cta .btn-primary { display: none; }
  .nav.open { background: rgba(10, 10, 11, .9); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  /* hide the ticker on phones — reclaim vertical space, restore nav top */
  .shipline { display: none; }
  body.has-shipline .nav { top: 0; }
}
@media (max-width: 520px) {
  .feat-grid { grid-template-columns: 1fr; }
  .feat.usp { grid-column: span 1; }
  .stepper { grid-template-columns: 1fr; }
  .welcome { left: 14px; right: 14px; max-width: none; }
  .hero h1 { font-size: clamp(40px, 13vw, 56px); }
}

/* =================== REDUCED MOTION =================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero h1 .line, .gold-grad, .hero-sub, .hero-ctas, .hero-note { opacity: 1 !important; transform: none !important; }
  [data-parallax] { transform: none !important; }
  .cursor-dot { display: none; }
  /* logistics motion: show the static end-state, no looping animation */
  .shipline-row { animation: none !important; }
  .route-draw { stroke-dashoffset: 0 !important; }
  .route-cargo { opacity: 1 !important; }
  .rack-bin { opacity: 0 !important; }
  .stat-spark { display: none; }
}
