@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap');

:root {
  --bg: oklch(0.985 0.005 250);
  --surface: oklch(0.995 0.003 250);
  --surface-2: oklch(0.965 0.012 250);
  --surface-3: oklch(0.925 0.02 250);
  --ink: oklch(0.22 0.025 250);
  --ink-2: oklch(0.38 0.025 250);
  --muted: oklch(0.55 0.025 250);
  --border: oklch(0.9 0.016 250);
  --border-soft: oklch(0.94 0.012 250);
  /* Brand accent — navy/orange identity. Values match src/style.css --color-brand-*
     (that file is the token source of truth; kept in sync here per the shared-brand rule). */
  --gold: #F59E0B;
  --gold-deep: #183B56;
  --gold-soft: #E7EDF2;
  --green: oklch(0.62 0.15 158);
  --green-deep: oklch(0.48 0.13 158);
  --green-soft: oklch(0.95 0.055 158);
  --blue: oklch(0.62 0.14 235);
  --blue-soft: oklch(0.95 0.045 235);
  --amber: oklch(0.7 0.15 65);
  --amber-soft: oklch(0.96 0.05 75);
  --red: oklch(0.6 0.18 28);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 10px oklch(0.25 0.04 250 / 0.06);
  --shadow-md: 0 16px 34px -18px oklch(0.25 0.04 250 / 0.22);
  --shadow-lg: 0 30px 64px -28px oklch(0.25 0.04 250 / 0.28);
  --font: 'Manrope', system-ui, sans-serif;
  --font-display: 'Sora', system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: var(--font);
  line-height: 1.6;
  overflow-x: hidden;
}

body,
button,
a { font-family: var(--font); }

a { color: inherit; text-decoration: none; }
svg { display: block; width: 100%; height: 100%; }
h1, h2, h3, h4, h5, p { margin: 0; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); letter-spacing: 0; }

a,
button,
.btn {
  -webkit-tap-highlight-color: transparent;
}

a:focus,
button:focus,
.btn:focus {
  outline: none;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid oklch(0.52 0.11 78 / 0.9);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
  box-shadow: 0 0 0 2px oklch(0.93 0.07 78 / 0.55);
}

.logo:focus-visible,
.nav-links a:focus-visible,
.footer-col a:focus-visible {
  background: oklch(0.97 0.035 78 / 0.72);
  color: var(--gold-deep);
}

.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 120px) 0; }
.section.alt { background: var(--surface-2); }
.center { justify-content: center; }

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: oklch(0.99 0.004 250 / 0.92);
  border-bottom: 1px solid var(--border-soft);
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { display: inline-flex; align-items: center; gap: 10px; font-size: 19px; font-weight: 700; }
.logo b { color: var(--gold-deep); }
.logo-mark {
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: var(--radius-sm);
  background: var(--gold-deep);
  box-shadow: var(--shadow-sm);
}

.nav-links { display: flex; align-items: center; gap: 26px; color: var(--ink-2); font-size: 14px; font-weight: 600; }
.nav-links a:hover { color: var(--gold-deep); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 17px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, background 180ms ease-out;
}

.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold-deep); color: oklch(0.99 0.004 80); box-shadow: 0 10px 22px -12px var(--gold-deep); }
.btn-primary:hover { background: oklch(0.54 0.14 68); }
.btn-ghost { border-color: var(--border); background: var(--surface); color: var(--ink-2); }
.btn-ghost:hover { background: var(--surface-2); color: var(--ink); }
.btn-lg { min-height: 50px; padding: 12px 21px; font-size: 15px; }

.hero { padding: 132px 0 72px; min-height: 100vh; display: grid; align-items: center; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr); align-items: center; gap: 54px; }
.hero-copy { position: relative; z-index: 5; }
.hero-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 12px 6px 6px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 700;
}
.tag { padding: 3px 8px; border-radius: 999px; background: var(--gold-soft); color: var(--gold-deep); }
.hero h1 { margin-top: 24px; max-width: 12ch; font-size: clamp(44px, 6vw, 76px); line-height: 1.02; }
.hero h1 .accent { color: var(--gold-deep); }
.hero-sub { max-width: 59ch; margin-top: 24px; color: var(--ink-2); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-trust { display: flex; align-items: center; gap: 20px; margin-top: 42px; }
.stat { display: grid; gap: 2px; }
.stat b { font-family: var(--font-display); font-size: 20px; }
.stat span { color: var(--muted); font-size: 11px; font-weight: 700; text-transform: uppercase; }
.divider { width: 1px; height: 34px; background: var(--border); }

.scene { position: relative; height: 600px; }
.scene-stage { position: absolute; inset: 70px 0 20px; perspective: 900px; }
.ground {
  position: absolute;
  inset: 70px 28px 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  transform: rotateX(58deg) rotateZ(-7deg);
}
.route {
  position: absolute;
  left: 12%;
  right: 8%;
  top: 53%;
  height: 6px;
  transform: rotate(-7deg);
}
.route-line { position: absolute; inset: 0; border-radius: 999px; background: var(--surface-3); }
.route-glow { position: absolute; inset: 0 43% 0 0; border-radius: 999px; background: var(--gold); box-shadow: 0 0 18px oklch(0.74 0.13 78 / 0.45); }
.pin { position: absolute; top: -11px; }
.pin-head { width: 28px; height: 28px; border: 7px solid var(--surface); border-radius: 50%; background: var(--gold); box-shadow: var(--shadow-md); }
.pin.done .pin-head { background: var(--green); }
.pin-pulse { position: absolute; inset: -7px; border: 1px solid var(--gold); border-radius: 50%; animation: pulse 2.2s infinite ease-out; }
.pin-label { position: absolute; top: 38px; left: 50%; width: max-content; transform: translateX(-50%); color: var(--ink-2); font-size: 11px; font-weight: 800; }

/* ---- truck illustration ---- */
.truck-track { position: absolute; left: 12%; right: 8%; top: 44%; transform: rotate(-7deg); }
.truck {
  position: relative;
  width: 210px;
  height: 85px;
  animation: drive 9s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
.truck svg { display: block; overflow: visible; }
.w-spin {
  animation: wheel-spin 0.85s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.doc-card {
  position: absolute;
  z-index: 6;
  width: 220px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.dc-1 { top: 15px; left: 15%; }
.dc-2 { top: 120px; right: 0; }
.dc-3 { bottom: 95px; left: 0; }
.dc-4 { right: 8%; bottom: 0; }
.dc-top { display: flex; gap: 10px; align-items: center; margin-bottom: 10px; }
.doc-icon, .d-ico { width: 34px; height: 34px; flex: 0 0 auto; padding: 8px; border-radius: var(--radius-sm); }
.icon-gold { background: var(--gold-soft); color: var(--gold-deep); }
.icon-green { background: var(--green-soft); color: var(--green-deep); }
.icon-blue { background: var(--blue-soft); color: var(--blue); }
.icon-amber { background: var(--amber-soft); color: var(--amber); }
.dc-title { color: var(--ink); font-size: 12px; font-weight: 800; }
.dc-meta { margin-top: 2px; color: var(--muted); font-size: 10px; }

.badge { display: inline-flex; align-items: center; gap: 6px; width: fit-content; padding: 4px 8px; border-radius: 999px; font-size: 10px; font-weight: 800; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.badge-green { background: var(--green-soft); color: var(--green-deep); }
.badge-blue { background: var(--blue-soft); color: var(--blue); }
.badge-gold { background: var(--gold-soft); color: var(--gold-deep); }
.badge-amber { background: var(--amber-soft); color: oklch(0.55 0.13 65); }

.section-head { width: min(720px, 100%); margin: 0 auto 48px; text-align: center; }
.eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; color: var(--gold-deep); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.section-head h2, .cta-box h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.08; }
.section-head p { margin-top: 16px; color: var(--ink-2); font-size: 17px; }

.prob-grid, .feat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.prob-card, .feat-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.prob-card { display: flex; gap: 14px; }
.prob-x, .feat-ico, .step-ico, .ben-ico, .sol-check {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: var(--gold-soft);
  color: var(--gold-deep);
}
.prob-x { background: oklch(0.95 0.035 25); color: var(--red); }
.prob-card h4, .feat-card h4 { margin-bottom: 8px; font-size: 15px; }
.prob-card p, .feat-card p, .ben p { color: var(--muted); font-size: 13px; }

.sol-layout { display: grid; grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 34px; align-items: center; }
.sol-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sol-item { display: flex; align-items: center; gap: 10px; padding: 16px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); font-size: 13px; }
.sol-check { width: 28px; height: 28px; padding: 7px; background: var(--green-soft); color: var(--green-deep); }
.sol-panel, .panel { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-md); overflow: hidden; }
.sol-panel-head, .panel-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 18px; border-bottom: 1px solid var(--border-soft); }
.timeline { padding: 12px 18px 20px; }
.timeline-scroll { position: relative; }
.tl-rail { position: absolute; left: 21px; top: 28px; bottom: 28px; width: 2px; background: var(--border-soft); border-radius: 2px; }
.tl-rail-fill { width: 100%; height: 0%; background: linear-gradient(180deg, var(--green), var(--gold)); border-radius: 2px; transition: height 0.4s ease; }
.tl-step { position: relative; padding: 16px 0 16px 30px; border-bottom: 1px solid var(--border-soft); transition: opacity 0.4s ease, transform 0.4s ease; }
.tl-step::before { content: ''; position: absolute; left: 2px; top: 23px; width: 10px; height: 10px; border-radius: 50%; background: var(--surface-3); transition: background 0.3s ease, box-shadow 0.3s ease; }
.tl-step[data-status="done"]::before { background: var(--green); }
.tl-step.active::before { background: var(--gold); box-shadow: 0 0 0 5px var(--gold-soft); }
.tl-step.future::before { background: var(--surface-3); }
.timeline-scroll .tl-step.is-passed::before { background: var(--green); box-shadow: none; }
.timeline-scroll .tl-step.is-current::before { background: var(--gold); box-shadow: 0 0 0 5px var(--gold-soft); }
.timeline-scroll .tl-step { opacity: 0.45; }
.timeline-scroll .tl-step.is-current,
.timeline-scroll .tl-step.is-passed { opacity: 1; }
.timeline-scroll .tl-step.is-current { transform: translateX(2px); }
.tl-h { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-size: 13px; }
.tl-t { margin-top: 4px; color: var(--muted); font-size: 11px; }
@media (prefers-reduced-motion: reduce) {
  .tl-rail-fill, .tl-step { transition: none; }
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.step-card { position: relative; padding: 32px; border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-sm); }
.step-num { position: absolute; top: 20px; right: 24px; color: var(--surface-3); font-family: var(--font-display); font-size: 38px; font-weight: 800; }
.step-ico { margin-bottom: 30px; width: 50px; height: 50px; }
.step-card h3 { margin-bottom: 10px; font-size: 20px; }
.step-card p { color: var(--muted); font-size: 14px; }
.feat-card { min-height: 210px; }
.feat-ico { margin-bottom: 28px; }

.dash-shell { border: 1px solid var(--border); border-radius: var(--radius-lg); background: var(--surface); box-shadow: var(--shadow-lg); overflow: hidden; }
.dash-bar { height: 42px; display: flex; align-items: center; gap: 18px; padding: 0 14px; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.dash-dots { display: flex; gap: 5px; }
.dash-dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--surface-3); }
.dash-url { color: var(--muted); font-size: 10px; }
.dash-body { display: grid; grid-template-columns: 185px minmax(0, 1fr); min-height: 600px; }
.dash-side { padding: 20px 13px; border-right: 1px solid var(--border); background: oklch(0.24 0.03 250); color: oklch(0.95 0.01 250); }
.brandrow { display: flex; align-items: center; gap: 9px; font-weight: 800; }
.brandrow .logo-mark { width: 30px; height: 30px; padding: 7px; }
.dash-nav { display: grid; gap: 5px; margin-top: 32px; }
.dash-nav a { display: flex; align-items: center; gap: 9px; padding: 9px 10px; border-radius: var(--radius-sm); color: oklch(0.82 0.015 250); font-size: 11px; }
.dash-nav a.active { color: oklch(0.99 0.004 80); background: oklch(0.72 0.13 78 / 0.16); }
.dash-nav svg { width: 15px; height: 15px; }
.dash-main { min-width: 0; padding: 22px; background: var(--surface-2); }
.dash-main-head { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.dash-main-head h3 { font-size: 19px; }
.sub { color: var(--muted); font-size: 10px; }
.kpi-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 20px 0; perspective: 900px; }
.kpi {
  position: relative;
  padding: 16px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: linear-gradient(162deg, var(--surface) 0%, var(--surface-2) 100%);
  transform-style: preserve-3d;
  transform: rotateX(8deg);
  box-shadow:
    0 12px 22px -14px oklch(0.25 0.04 250 / 0.35),
    inset 0 1px 0 oklch(1 0 0 / 0.7);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease;
  will-change: transform;
}
.kpi:hover {
  transform: rotateX(2deg) rotateY(0deg) translateY(-4px) scale(1.03);
  box-shadow:
    0 26px 40px -20px oklch(0.25 0.04 250 / 0.45),
    inset 0 1px 0 oklch(1 0 0 / 0.8);
}
.kpi-label { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 9px; transform: translateZ(14px); }
.kpi-val {
  margin: 10px 0 4px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  transform: translateZ(28px);
  text-shadow:
    0 1px 0 oklch(0.87 0.018 250),
    0 2px 0 oklch(0.83 0.018 250),
    0 3px 0 oklch(0.79 0.02 250),
    0 4px 0 oklch(0.75 0.02 250),
    0 5px 0 oklch(0.71 0.022 250),
    0 9px 14px oklch(0.2 0.03 250 / 0.32);
}
.kpi-trend { color: var(--green-deep); font-size: 9px; font-weight: 700; transform: translateZ(14px); }

/* hero trust numbers get a lighter extruded pop for consistency */
.stat b {
  text-shadow:
    0 1px 0 oklch(0.9 0.015 250),
    0 2px 0 oklch(0.85 0.018 250),
    0 3px 6px oklch(0.2 0.03 250 / 0.22);
}
.dash-cols { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(270px, 0.8fr); gap: 12px; }
.panel-head { padding: 12px 14px; font-size: 11px; }
.link { color: var(--gold-deep); font-size: 9px; font-weight: 800; }
.ship-row { display: grid; grid-template-columns: 60px 1fr auto; align-items: center; gap: 10px; padding: 13px 14px; border-bottom: 1px solid var(--border-soft); }
.ship-id { font-size: 10px; font-weight: 800; }
.ship-route .r { font-size: 10px; font-weight: 800; }
.ship-route .m { margin: 2px 0 5px; color: var(--muted); font-size: 8px; }
.mini-progress { height: 3px; border-radius: 999px; background: var(--surface-3); overflow: hidden; }
.mini-progress i { display: block; height: 100%; background: var(--gold); }
.docrow { display: flex; align-items: center; gap: 9px; padding: 10px 12px; border-bottom: 1px solid var(--border-soft); }
.d-ico { width: 28px; height: 28px; padding: 7px; }
.d-name { flex: 1; min-width: 0; }
.d-name .n { font-size: 9px; font-weight: 800; }
.d-name .s { color: var(--muted); font-size: 8px; }
.activity { padding: 5px 12px 12px; }
.act { display: flex; gap: 8px; padding: 9px 0; border-bottom: 1px solid var(--border-soft); }
.a-dot { width: 6px; height: 6px; margin-top: 5px; border-radius: 50%; flex: 0 0 auto; }
.a-txt { font-size: 9px; }
.a-time { color: var(--muted); font-size: 7px; }

.ben-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 28px; }
.ben { display: flex; gap: 14px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.ben-ico { width: 38px; height: 38px; }
.ben b { font-size: 14px; }
.ben p { margin-top: 5px; }

.cta-band { padding: 50px 0 100px; }
.cta-box { position: relative; overflow: hidden; padding: clamp(48px, 8vw, 82px); border-radius: var(--radius-xl); background: oklch(0.24 0.03 250); color: oklch(0.97 0.008 250); text-align: center; box-shadow: var(--shadow-lg); }
.cta-box::before { content: ''; position: absolute; inset: 0; pointer-events: none; }
.cta-box > * { position: relative; z-index: 2; }
.cta-box .eyebrow { color: var(--gold); }
.cta-box h2 { color: inherit; }
.cta-box p { max-width: 58ch; margin: 18px auto 28px; color: oklch(0.82 0.015 250); }
.enquiry-box {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
  text-align: left;
}
.enquiry-copy {
  display: grid;
  gap: 18px;
}
.enquiry-copy .eyebrow,
.demo-access .eyebrow {
  text-align: left;
}
.enquiry-copy p,
.demo-access p {
  margin: 0;
}
.enquiry-form {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid oklch(1 0 0 / 0.16);
  border-radius: var(--radius-lg);
  background: oklch(0.99 0.005 250 / 0.08);
}
.enquiry-form label,
.module-fieldset {
  display: grid;
  gap: 7px;
  color: oklch(0.9 0.012 250);
  font-size: 13px;
  font-weight: 800;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid oklch(1 0 0 / 0.18);
  border-radius: var(--radius-sm);
  background: oklch(0.98 0.006 250);
  color: oklch(0.24 0.03 250);
  padding: 11px 12px;
  font: inherit;
}
/* Match the 44px height the text inputs land on — a bare select renders
   shorter and breaks the row's alignment with the Country field beside it. */
.enquiry-form select {
  appearance: none;
  height: 44px;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, oklch(0.45 0.03 250) 50%),
                    linear-gradient(135deg, oklch(0.45 0.03 250) 50%, transparent 50%);
  background-position: calc(100% - 18px) 19px, calc(100% - 13px) 19px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 34px;
}
.enquiry-form textarea {
  resize: vertical;
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: 2px solid oklch(0.75 0.12 78);
  outline-offset: 2px;
}
.module-fieldset {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid oklch(1 0 0 / 0.16);
  border-radius: var(--radius-sm);
  padding: 12px;
}
.module-fieldset legend {
  padding: 0 6px;
}
.module-fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}
.module-fieldset input {
  width: 16px;
  min-width: 16px;
  height: 16px;
  padding: 0;
  accent-color: var(--gold);
}
.enquiry-submit {
  justify-content: center;
  width: 100%;
}
.enquiry-status {
  min-height: 20px;
  margin: 0;
  color: oklch(0.84 0.13 145);
  font-size: 13px;
  font-weight: 800;
}
.enquiry-status.error {
  color: oklch(0.78 0.15 35);
}
.demo-access {
  grid-column: 1 / -1;
  display: grid;
  gap: 18px;
  margin-top: 4px;
  padding: 22px;
  border: 1px solid oklch(0.78 0.11 78 / 0.5);
  border-radius: var(--radius-lg);
  background: oklch(0.31 0.035 250);
}
.demo-access[hidden] {
  display: none;
}
.demo-access h3 {
  margin: 0;
  color: oklch(0.98 0.006 250);
}
/* The demo panel's status pill. Replaces .demo-account*, which styled the cards
   that printed a live email + password onto this public page. Nothing secret is
   rendered here now — the pill just says where the prospect is in the flow. */
.demo-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 5px 12px 5px 10px;
  border: 1px solid oklch(1 0 0 / 0.16);
  border-radius: 999px;
  background: oklch(0.98 0.006 250 / 0.08);
  color: oklch(0.9 0.012 250);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.demo-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

/* sent / pending — waiting on the prospect (gold, the brand's "your move" tone) */
.demo-pill[data-state='sent'],
.demo-pill[data-state='pending'] {
  border-color: oklch(0.78 0.11 78 / 0.55);
  color: oklch(0.88 0.09 78);
}

/* claiming — in flight. The dot pulses so the panel reads as working, not stuck. */
.demo-pill[data-state='claiming'] {
  border-color: oklch(0.78 0.11 78 / 0.55);
  color: oklch(0.88 0.09 78);
}
.demo-pill[data-state='claiming'] .demo-pill-dot {
  animation: demoPulse 1.1s ease-in-out infinite;
}
@keyframes demoPulse {
  50% { opacity: 0.25; transform: scale(0.72); }
}

/* claimed — success, about to redirect */
.demo-pill[data-state='claimed'] {
  border-color: oklch(0.72 0.15 152 / 0.55);
  color: oklch(0.82 0.14 152);
}

/* error — dead link */
.demo-pill[data-state='error'] {
  border-color: oklch(0.65 0.18 25 / 0.55);
  color: oklch(0.78 0.15 25);
}

.demo-access p {
  overflow-wrap: anywhere;
}
.demo-access-note {
  color: oklch(0.7 0.02 250);
  font-size: 12px;
}
.demo-access-note[hidden] {
  display: none;
}

/* The pill's motion is decorative — never animate for someone who opted out. */
@media (prefers-reduced-motion: reduce) {
  .demo-pill[data-state='claiming'] .demo-pill-dot {
    animation: none;
  }
}

.footer { padding: 62px 0 24px; background: oklch(0.2 0.025 250); color: oklch(0.87 0.012 250); }
.footer-top { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 42px; }
.footer-brand p { max-width: 34ch; margin-top: 16px; color: oklch(0.65 0.018 250); font-size: 13px; }
.footer-col { display: grid; align-content: start; gap: 8px; }
.footer-col h5 { margin-bottom: 5px; color: oklch(0.97 0.008 250); font-size: 12px; }
.footer-col a { color: oklch(0.65 0.018 250); font-size: 12px; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 52px; padding-top: 20px; border-top: 1px solid oklch(0.35 0.02 250); color: oklch(0.58 0.018 250); font-size: 10px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 650ms ease-out, transform 650ms ease-out; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 80ms; }
.d2 { transition-delay: 160ms; }
.d3 { transition-delay: 240ms; }
.d4 { transition-delay: 320ms; }

@keyframes pulse {
  0% { transform: scale(0.7); opacity: 0.7; }
  80%, 100% { transform: scale(1.6); opacity: 0; }
}

@keyframes drive {
  0%, 10%  { transform: translateX(8px); }
  46%, 58% { transform: translateX(150px); }
  90%, 100% { transform: translateX(390px); }
}
@keyframes wheel-spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 1ms !important; transition-duration: 1ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero h1 { max-width: 13ch; }
  .scene { height: 560px; }
  .prob-grid, .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-body { grid-template-columns: 1fr; }
  .dash-side { display: none; }
  .sol-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .nav-inner { min-height: 64px; }
  .nav-cta .btn-ghost { display: none; }
  .hero { min-height: auto; padding-top: 108px; }
  .hero h1 { font-size: clamp(38px, 13vw, 56px); }
  .hero-sub { font-size: 16px; }
  .hero-trust { gap: 12px; justify-content: space-between; }
  .hero-trust .divider { display: none; }
  .scene { height: 430px; margin-inline: -14px; }
  .scene-stage { transform: scale(0.78); transform-origin: center; inset: 40px -70px -30px; }
  .doc-card { width: 175px; padding: 10px; }
  .dc-1 { top: 5px; left: 1%; }
  .dc-2 { top: 70px; right: 0; }
  .dc-3 { bottom: 40px; left: 0; }
  .dc-4 { bottom: 2px; right: 0; }
  .prob-grid, .feat-grid, .steps, .ben-grid, .sol-list { grid-template-columns: 1fr; }
  .section-head { text-align: left; margin-bottom: 32px; }
  .section-head .eyebrow { justify-content: flex-start; }
  .section-head h2, .cta-box h2 { font-size: 32px; }
  .dash-shell { margin-inline: -8px; }
  .dash-main { padding: 12px; }
  .kpi-row { grid-template-columns: repeat(2, 1fr); }
  .dash-cols { grid-template-columns: 1fr; }
  .ship-row { grid-template-columns: 55px 1fr; }
  .ship-row .badge { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .cta-box { padding: 42px 22px; border-radius: var(--radius-lg); }
  .enquiry-box,
  .form-row,
  .module-fieldset {
    grid-template-columns: 1fr;
  }
  .enquiry-form,
  .demo-access {
    padding: 16px;
  }
}
