:root {
  --bg: #04142f;
  --bg-soft: #08214a;
  --panel: rgba(8, 33, 74, 0.78);
  --panel-solid: #0b2b5a;
  --line: rgba(255,255,255,0.10);
  --text: #f7fbff;
  --muted: #a9bed6;
  --blue: #078fff;
  --cyan: #18d6df;
  --green: #73d400;
  --danger: #ffcc19;
  --shadow: 0 24px 80px rgba(0,0,0,0.28);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(60,167,255,.18), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(72,226,219,.12), transparent 26%),
    linear-gradient(180deg, #072b67 0%, #04142f 48%, #021027 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img { max-width: 100%; display: block; }

.container { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(5, 13, 21, .76);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 850;
  letter-spacing: -.02em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #03131a;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 10px 28px rgba(60,167,255,.28);
}

.brand-mark svg { width: 24px; height: 24px; }
.brand small { display: block; color: var(--muted); font-size: 11px; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; margin-top: -4px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: rgba(255,255,255,.07);
}

.nav-cta {
  padding: 11px 16px !important;
  color: #03131a !important;
  background: linear-gradient(135deg, var(--cyan), var(--green)) !important;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  color: white;
  cursor: pointer;
}

.hero {
  padding: 92px 0 70px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #bfe8ff;
  border: 1px solid rgba(60,167,255,.28);
  background: rgba(60,167,255,.08);
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(86,227,159,.11);
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 820px;
  font-size: clamp(45px, 7vw, 78px);
  line-height: .98;
  letter-spacing: -.055em;
  margin: 22px 0 24px;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(90deg, #fff 0%, #7cc9ff 48%, #6ef3d9 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-copy {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #041319;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 38px rgba(60,167,255,.22);
}
.button-secondary {
  border-color: var(--line);
  background: rgba(255,255,255,.045);
  color: white;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.trust-item { display: flex; align-items: center; gap: 8px; }
.check {
  width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--green);
  background: rgba(86,227,159,.1);
  border: 1px solid rgba(86,227,159,.2);
}

.dispatch-shell {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.dispatch-shell::before {
  content: "";
  position: absolute;
  inset: -30px;
  z-index: -1;
  background: radial-gradient(circle, rgba(60,167,255,.16), transparent 62%);
}

.app-window {
  overflow: hidden;
  background: #0a1621;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 23px;
}

.app-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
}

.window-dots { display: flex; gap: 7px; }
.window-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.22); }
.live-pill {
  color: #8ff0bd;
  background: rgba(86,227,159,.09);
  border: 1px solid rgba(86,227,159,.18);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.dashboard {
  display: grid;
  grid-template-columns: 72px 1fr;
  min-height: 430px;
}

.side-rail {
  border-right: 1px solid var(--line);
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rail-icon {
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  color: var(--muted);
  background: rgba(255,255,255,.03);
}

.rail-icon.active { color: #041319; background: linear-gradient(135deg, var(--blue), var(--cyan)); }
.dash-content { padding: 22px; }
.dash-title { display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.dash-title h3 { margin: 0; font-size: 18px; }
.avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, #756cff, var(--blue)); border: 2px solid rgba(255,255,255,.65); }

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}
.metric {
  padding: 14px;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.metric span { display: block; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.metric strong { display: block; margin-top: 4px; font-size: 21px; }

.map-card {
  position: relative;
  min-height: 192px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(35deg, transparent 49%, rgba(255,255,255,.05) 50%, transparent 51%) 0 0/54px 54px,
    linear-gradient(-35deg, transparent 49%, rgba(255,255,255,.045) 50%, transparent 51%) 0 0/54px 54px,
    #0d2030;
  border-radius: 16px;
}
.route {
  position: absolute;
  left: 15%;
  top: 52%;
  width: 68%;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transform: rotate(-12deg);
  box-shadow: 0 0 18px rgba(72,226,219,.55);
}
.route::before, .route::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 13px; height: 13px; border-radius: 50%;
  background: white;
  border: 4px solid var(--blue);
  transform: translateY(-50%);
}
.route::before { left: -3px; }
.route::after { right: -3px; border-color: var(--cyan); }

.shipment-list {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}
.shipment {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
  border-radius: 12px;
}
.shipment-icon { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: rgba(60,167,255,.1); color: #7fc9ff; }
.shipment strong { display: block; font-size: 12px; }
.shipment small { color: var(--muted); font-size: 10px; }
.status { color: #8ff0bd; font-size: 10px; font-weight: 800; }

.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-heading { max-width: 740px; margin-bottom: 32px; }
.section-heading h2 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -.045em;
  margin: 14px 0 16px;
}
.section-heading p { color: var(--muted); font-size: 17px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  padding: 24px;
  box-shadow: 0 14px 50px rgba(0,0,0,.14);
}

.icon-box {
  width: 48px; height: 48px; border-radius: 14px;
  display: grid; place-items: center;
  color: #b9e4ff;
  border: 1px solid rgba(60,167,255,.2);
  background: rgba(60,167,255,.09);
  margin-bottom: 18px;
}

.card h3 { margin-bottom: 8px; font-size: 19px; }
.card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  display: flex;
  flex-direction: column;
}
.product-card::after {
  content:"";
  position:absolute;
  width: 220px; height:220px;
  right:-80px; bottom:-90px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(60,167,255,.2), transparent 67%);
}
.product-tag {
  width: max-content;
  padding: 5px 9px;
  border-radius: 999px;
  color: #9ff0cb;
  background: rgba(86,227,159,.08);
  border: 1px solid rgba(86,227,159,.18);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-card .spacer { flex: 1; }
.product-link { display: inline-flex; align-items:center; gap:8px; margin-top:20px; color:#8fd4ff; font-weight:800; font-size:14px; }

.placeholder-card {
  border-style: dashed;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
}

.banner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 34px;
  border: 1px solid rgba(72,226,219,.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 86% 10%, rgba(72,226,219,.12), transparent 35%),
    linear-gradient(145deg, rgba(60,167,255,.09), rgba(255,255,255,.025));
}

.banner h2 { font-size: clamp(27px,4vw,42px); letter-spacing:-.04em; margin-bottom:8px; }
.banner p { color:var(--muted); margin-bottom:0; max-width:720px; }

.page-hero { padding: 78px 0 42px; }
.page-hero h1 { font-size: clamp(42px,6vw,68px); margin-bottom:18px; }
.page-hero p { max-width:760px; color:var(--muted); font-size:18px; }

.content-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 42px;
  align-items: start;
}

.side-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 5px;
}
.side-nav a { color:var(--muted); padding:9px 12px; border-left:2px solid var(--line); font-size:13px; }
.side-nav a:hover { color:white; border-color:var(--blue); }

.prose {
  max-width: 830px;
  padding: 34px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.025);
  border-radius:var(--radius-md);
}
.prose h2 { margin-top:38px; font-size:25px; letter-spacing:-.02em; }
.prose h2:first-child { margin-top:0; }
.prose h3 { margin-top:28px; }
.prose p, .prose li { color:#b4c2ce; }
.prose a { color:#8fd4ff; text-decoration:underline; }
.notice {
  padding:15px 17px;
  border-radius:12px;
  background:rgba(60,167,255,.08);
  border:1px solid rgba(60,167,255,.2);
  color:#ccecff;
}

.support-grid {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:20px;
}
.contact-card { display:grid; gap:14px; }
.contact-item {
  display:flex; gap:14px; align-items:flex-start;
  padding:17px;
  border:1px solid var(--line);
  border-radius:14px;
  background:rgba(255,255,255,.025);
}
.contact-item strong { display:block; }
.contact-item span { color:var(--muted); font-size:13px; }

.form-card { padding:28px; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.field { display:grid; gap:7px; }
.field.full { grid-column:1/-1; }
label { color:#cbd7e1; font-size:13px; font-weight:750; }
input, textarea, select {
  width:100%;
  color:white;
  background:#091722;
  border:1px solid var(--line);
  border-radius:12px;
  padding:13px 14px;
  outline:none;
}
input:focus, textarea:focus, select:focus { border-color:rgba(60,167,255,.7); box-shadow:0 0 0 3px rgba(60,167,255,.1); }
textarea { min-height:140px; resize:vertical; }
.form-note { color:var(--muted); font-size:12px; margin-top:12px; }
.success-message { display:none; margin-top:14px; color:#a5f4cf; }

.faq { display:grid; gap:12px; }
.faq details {
  border:1px solid var(--line);
  border-radius:14px;
  background:rgba(255,255,255,.025);
  padding:17px 19px;
}
.faq summary { cursor:pointer; font-weight:800; }
.faq p { color:var(--muted); margin:12px 0 0; }

.site-footer {
  border-top:1px solid var(--line);
  padding:46px 0 28px;
  margin-top:70px;
  background:rgba(0,0,0,.12);
}
.footer-grid { display:grid; grid-template-columns:1.5fr repeat(3,1fr); gap:30px; }
.footer-copy { color:var(--muted); max-width:360px; font-size:14px; }
.footer-col h3 { font-size:13px; text-transform:uppercase; letter-spacing:.08em; color:#dce6ee; }
.footer-col a { display:block; color:var(--muted); font-size:14px; margin:9px 0; }
.footer-col a:hover { color:white; }
.footer-bottom { display:flex; justify-content:space-between; gap:20px; padding-top:28px; margin-top:28px; border-top:1px solid var(--line); color:var(--muted); font-size:12px; }

@media (max-width: 900px) {
  .hero-grid, .support-grid, .content-layout { grid-template-columns:1fr; }
  .hero { padding-top:64px; }
  .card-grid { grid-template-columns:1fr 1fr; }
  .side-nav { position:static; display:flex; flex-wrap:wrap; }
  .side-nav a { border-left:0; border-bottom:2px solid var(--line); }
  .footer-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 720px) {
  .menu-button { display:grid; place-items:center; }
  .nav-links {
    display:none;
    position:absolute;
    left:18px; right:18px; top:68px;
    flex-direction:column;
    align-items:stretch;
    padding:12px;
    border:1px solid var(--line);
    border-radius:16px;
    background:#091722;
    box-shadow:var(--shadow);
  }
  .nav-links.open { display:flex; }
  .nav-links a { text-align:center; }
  .card-grid, .metrics, .form-grid, .footer-grid { grid-template-columns:1fr; }
  .field.full { grid-column:auto; }
  .dashboard { grid-template-columns:54px 1fr; min-height:390px; }
  .side-rail { padding:14px 7px; }
  .rail-icon { width:38px; height:38px; }
  .dash-content { padding:16px; }
  .metric strong { font-size:17px; }
  .shipment:nth-child(2) { display:none; }
  .banner { grid-template-columns:1fr; padding:26px; }
  .footer-bottom { flex-direction:column; }
  h1 { font-size:44px; }
  .prose { padding:23px; }
}

/* Slateli brand update */
.brand-logo-image {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(7, 143, 255, .28);
  border: 1px solid rgba(255,255,255,.18);
}
.brand-name {
  font-size: 19px;
  font-weight: 850;
  letter-spacing: -.025em;
}
.brand-name .brand-li {
  color: #75d800;
}
.brand-name small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-top: -3px;
}
.hero-logo-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    radial-gradient(circle at 78% 8%, rgba(255,211,0,.18), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(115,212,0,.17), transparent 35%),
    linear-gradient(145deg, rgba(7,143,255,.16), rgba(255,255,255,.025));
  box-shadow: var(--shadow);
  padding: 22px;
}
.hero-logo-card img {
  width: 100%;
  border-radius: 24px;
}
.yellow-accent {
  color: #ffd21a;
}
.button-primary {
  background: linear-gradient(135deg, #078fff, #18d6df 48%, #73d400);
}
.nav-cta {
  background: linear-gradient(135deg, #ffd21a, #73d400) !important;
  color: #05204a !important;
}
.eyebrow {
  border-color: rgba(255,210,26,.26);
  background: rgba(255,210,26,.075);
  color: #fff1a4;
}
.eyebrow-dot {
  background: #ffd21a;
  box-shadow: 0 0 0 6px rgba(255,210,26,.11);
}
.gradient-text {
  background: linear-gradient(90deg, #ffffff 0%, #18d6df 36%, #73d400 68%, #ffd21a 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
