:root {
  --bg: #0a172a;
  --bg-2: #111f35;
  --panel: #14243d;
  --panel-2: #192a46;
  --text: #ffffff;
  --muted: #9da8bb;
  --line: rgba(255, 255, 255, 0.12);
  --primary: #605eba;
  --primary-2: #7654c6;
  --accent: #d92555;
  --success: #16a56f;
  --warning: #f5a623;
  --danger: #dc3545;
  --light: #f4f6fa;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at 20% 0%, rgba(96, 94, 186, 0.22), transparent 36%), var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

main {
  min-height: calc(100vh - 150px);
}

.topbar {
  align-items: center;
  background: rgba(10, 23, 42, 0.88);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 64px);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
}

.brand {
  align-items: center;
  display: flex;
  font-size: 18px;
  font-weight: 800;
  gap: 12px;
}

.brand-logo {
  display: block;
  height: auto;
  max-width: 190px;
  width: min(190px, 48vw);
}

.topnav {
  align-items: center;
  display: flex;
  gap: 16px;
}

.hero {
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  padding: 70px clamp(18px, 6vw, 90px);
}

.public-hero {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  min-height: calc(100vh - 78px);
  overflow: hidden;
  padding: clamp(54px, 8vw, 110px) clamp(18px, 6vw, 90px) clamp(42px, 7vw, 86px);
  position: relative;
}

.public-hero::before {
  background:
    linear-gradient(135deg, rgba(96, 94, 186, 0.18), rgba(217, 37, 85, 0.1)),
    radial-gradient(circle at 70% 28%, rgba(217, 37, 85, 0.2), transparent 32%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.public-hero-copy h1 {
  font-size: clamp(50px, 8vw, 104px);
  letter-spacing: 0;
  max-width: 980px;
}

.hero-disclaimer {
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.28);
  border-radius: 12px;
  color: #f3d99d;
  margin-top: 22px;
  max-width: 780px;
  padding: 12px 14px;
}

.shipment-visual {
  background: linear-gradient(180deg, rgba(17, 31, 53, 0.94), rgba(15, 25, 43, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.34);
  display: grid;
  gap: 22px;
  padding: clamp(22px, 4vw, 34px);
}

.shipment-card-header,
.route-line,
.shipment-events div,
.mini-address {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
}

.shipment-card-header {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 14px;
}

.status-dot {
  background: var(--success);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(22, 165, 111, 0.12);
  height: 10px;
  width: 10px;
}

.route-line {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 16px;
  position: relative;
}

.route-line div {
  min-height: 118px;
  padding: 12px;
}

.route-line strong,
.mini-address strong {
  color: white;
  display: block;
  font-size: 20px;
}

.route-line span,
.mini-address span {
  color: var(--muted);
  display: block;
  line-height: 1.5;
  margin-top: 6px;
}

.mini-address {
  padding: 18px;
}

.mini-address .eyebrow {
  margin: 0 0 8px;
}

.shipment-events {
  display: grid;
  gap: 10px;
}

.shipment-events div {
  align-items: center;
  color: #dbe4f4;
  display: flex;
  gap: 10px;
  padding: 12px 14px;
}

.shipment-events span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 999px;
  height: 12px;
  width: 12px;
}

.trust-strip {
  border-block: 1px solid var(--line);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 clamp(18px, 6vw, 90px);
}

.trust-strip div {
  background: rgba(255, 255, 255, 0.035);
  padding: 24px 18px;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: var(--muted);
  margin-top: 6px;
}

.public-section {
  padding: clamp(58px, 8vw, 112px) clamp(18px, 6vw, 90px);
}

.split-section {
  align-items: center;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.split-section h2,
.section-intro h2,
.feature-band h2,
.final-cta h2 {
  font-size: clamp(34px, 5vw, 68px);
  max-width: 920px;
}

.comparison-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.comparison-card,
.public-card,
.pricing-card {
  background: rgba(17, 31, 53, 0.82);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
}

.comparison-card ul {
  color: var(--muted);
  line-height: 1.7;
  margin: 18px 0 0;
  padding-left: 20px;
}

.featured-card {
  background: linear-gradient(180deg, rgba(96, 94, 186, 0.24), rgba(217, 37, 85, 0.12));
  border-color: rgba(217, 37, 85, 0.3);
}

.muted-card {
  opacity: 0.9;
}

.section-intro {
  margin-bottom: 34px;
  max-width: 940px;
}

.process-section {
  background: rgba(255, 255, 255, 0.025);
}

.steps-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.steps-grid article {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  min-height: 260px;
  padding: 24px;
}

.steps-grid span {
  color: #d8d5ff;
  display: block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 28px;
}

.public-card {
  min-height: 220px;
}

.feature-band {
  align-items: start;
  background: linear-gradient(135deg, rgba(96, 94, 186, 0.18), rgba(217, 37, 85, 0.08));
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.feature-grid,
.proof-grid,
.faq-grid {
  display: grid;
  gap: 14px;
}

.feature-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid div,
.proof-grid div,
.faq-grid details {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 18px;
}

.feature-grid strong,
.proof-grid strong {
  color: white;
  display: block;
}

.feature-grid span,
.proof-grid span {
  color: var(--muted);
  display: block;
  line-height: 1.5;
  margin-top: 6px;
}

.pricing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 20px;
}

.pricing-card strong {
  color: #ff7a9b;
  display: block;
  font-size: 30px;
  margin: 18px 0 10px;
}

.proof-section {
  background: rgba(255, 255, 255, 0.02);
}

.proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-grid summary {
  color: white;
  cursor: pointer;
  font-weight: 850;
}

.faq-grid p {
  margin-bottom: 0;
}

.final-cta {
  align-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-2) 50%, var(--accent));
  border-radius: 24px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: clamp(40px, 6vw, 80px) clamp(18px, 6vw, 90px);
  padding: clamp(28px, 5vw, 54px);
}

.final-cta p,
.final-cta .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.final-cta h2 {
  color: white;
}

.hero-card,
.card,
.table-card,
.auth-card {
  background: rgba(17, 31, 53, 0.86);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 34px;
}

.eyebrow {
  color: #c9c5ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(42px, 7vw, 76px);
  letter-spacing: 0;
  margin-top: 12px;
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
}

h3 {
  font-size: 22px;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  color: #d7deec;
  font-size: 19px;
  max-width: 760px;
}

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

.btn,
button,
input[type="submit"] {
  align-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: 0;
  border-radius: 10px;
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.btn-small {
  min-height: 38px;
  padding: 0 14px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.section {
  padding: 40px clamp(18px, 6vw, 90px);
}

.card {
  padding: 24px;
}

.metric {
  font-size: 34px;
  font-weight: 900;
  margin: 10px 0 0;
}

.muted {
  color: var(--muted);
}

.auth-wrap {
  display: flex;
  justify-content: center;
  padding: 56px 18px;
}

.auth-card {
  max-width: 560px;
  padding: 34px;
  width: 100%;
}

label {
  color: #dce4f2;
  display: block;
  font-weight: 750;
  margin-bottom: 8px;
}

input,
select,
textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  color: var(--text);
  font: inherit;
  min-height: 46px;
  padding: 12px 14px;
  width: 100%;
}

select option {
  background: #111f35;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-row {
  margin-bottom: 16px;
}

.full {
  grid-column: 1 / -1;
}

.alert {
  border-radius: 10px;
  margin: 18px clamp(18px, 6vw, 90px) 0;
  padding: 14px 16px;
}

.alert-success {
  background: rgba(22, 165, 111, 0.16);
  border: 1px solid rgba(22, 165, 111, 0.36);
}

.alert-error {
  background: rgba(220, 53, 69, 0.16);
  border: 1px solid rgba(220, 53, 69, 0.36);
}

.app-shell {
  display: grid;
  gap: 22px;
  grid-template-columns: 250px minmax(0, 1fr);
  padding: 28px clamp(18px, 4vw, 52px);
}

.customer-shell {
  align-items: start;
  grid-template-columns: 280px minmax(0, 1fr);
}

.panel-main {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.sidebar {
  background: rgba(17, 31, 53, 0.92);
  border: 1px solid var(--line);
  border-radius: 14px;
  height: fit-content;
  padding: 16px;
}

.customer-sidebar {
  position: sticky;
  top: 92px;
}

.sidebar-title {
  color: #c9c5ff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  margin: 16px 0 12px;
  text-transform: uppercase;
}

.sidebar-title:first-child {
  margin-top: 0;
}

.sidebar a {
  border-radius: 10px;
  color: #d6deef;
  display: block;
  font-weight: 700;
  padding: 12px;
}

.sidebar a.active,
.sidebar a:hover {
  background: rgba(96, 94, 186, 0.22);
  color: white;
}

.table-card {
  overflow: hidden;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 14px;
  text-align: left;
  vertical-align: top;
}

th {
  color: #c8d2e5;
  font-size: 13px;
  text-transform: uppercase;
}

.badge {
  background: rgba(96, 94, 186, 0.22);
  border: 1px solid rgba(96, 94, 186, 0.45);
  border-radius: 999px;
  color: #dedcff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  text-transform: capitalize;
}

.page-title {
  max-width: 920px;
}

.page-title h1 {
  font-size: clamp(38px, 5vw, 58px);
}

.dashboard-hero,
.plan-hero {
  align-items: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-2) 48%, var(--accent));
  border-radius: 18px;
  box-shadow: 0 32px 90px rgba(96, 94, 186, 0.24);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(26px, 4vw, 48px);
}

.dashboard-hero h1,
.plan-hero h2 {
  color: white;
  font-size: clamp(36px, 5vw, 64px);
  margin: 14px 0;
}

.dashboard-hero p,
.plan-hero p {
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.status-pill {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: white;
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  padding: 8px 12px;
  text-transform: uppercase;
}

.dashboard-metrics {
  align-items: stretch;
}

.metric-card {
  background: rgba(17, 31, 53, 0.88);
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 178px;
  padding: 24px;
  position: relative;
}

.metric-icon {
  align-items: center;
  background: rgba(96, 94, 186, 0.18);
  border: 1px solid rgba(96, 94, 186, 0.36);
  border-radius: 12px;
  color: #dedcff;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  margin-bottom: 12px;
  width: 44px;
}

.accent-card {
  border-color: rgba(217, 37, 85, 0.38);
}

.accent-card .metric {
  color: #ff7a9b;
}

.address {
  background: linear-gradient(135deg, rgba(96, 94, 186, 0.2), rgba(217, 37, 85, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 22px;
}

.address-panel {
  display: grid;
  gap: 18px;
}

.address-header,
.section-heading {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

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

.address-grid div,
.quote-breakdown div,
.guidance-list div {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px;
}

.address-grid span,
.quote-breakdown span,
.guidance-list span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  line-height: 1.5;
}

.address-grid strong,
.quote-breakdown strong,
.guidance-list strong {
  color: white;
  display: block;
  margin-top: 4px;
}

.notice {
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.32);
  border-radius: 10px;
  color: #f4d69a;
  margin: 0;
  padding: 12px 14px;
}

.notice-panel {
  align-items: flex-start;
  background: rgba(96, 94, 186, 0.12);
  border: 1px solid rgba(96, 94, 186, 0.26);
  border-radius: 14px;
  display: grid;
  gap: 6px;
  padding: 18px;
}

.notice-panel strong {
  color: white;
}

.notice-panel span {
  color: var(--muted);
  line-height: 1.6;
}

.copy-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.compact-stats .card {
  min-height: 160px;
}

.empty-state {
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.empty-state h3 {
  color: white;
  margin-bottom: 8px;
}

.empty-state p {
  margin: 0 0 16px;
}

.activity-list,
.guidance-list,
.quote-breakdown {
  display: grid;
  gap: 10px;
}

.activity-item {
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 14px;
}

.activity-item strong {
  color: white;
  display: block;
}

.activity-item span {
  color: var(--muted);
  display: block;
  font-size: 14px;
  margin-top: 4px;
}

.align-start {
  align-items: start;
}

.module-table {
  margin-top: 0;
}

.quote-total {
  background: linear-gradient(135deg, rgba(96, 94, 186, 0.26), rgba(217, 37, 85, 0.18)) !important;
  border-color: rgba(217, 37, 85, 0.34) !important;
}

.quote-total strong {
  color: #ff7a9b;
  font-size: 24px;
}

.plan-card {
  min-height: 220px;
}

.active-plan {
  border-color: rgba(22, 165, 111, 0.38);
}

.profile-summary {
  min-height: 100%;
}

input:disabled {
  color: var(--muted);
  opacity: 0.8;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 26px clamp(18px, 6vw, 90px);
  text-align: center;
}

.footer-links {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 12px;
}

.footer-links a {
  color: inherit;
  font-weight: 800;
  opacity: 0.9;
}

.public-home {
  --home-bg: #f6f8fc;
  --home-surface: #ffffff;
  --home-surface-2: #eef3fb;
  --home-ink: #343f52;
  --home-title: #172033;
  --home-muted: #667085;
  --home-line: #e1e7f0;
  --home-primary: #605eba;
  --home-primary-2: #4f4ba7;
  --home-accent: #d82555;
  --home-orange: #ff6a13;
  --home-green: #14795f;
  --home-warn: #a56200;
  --home-danger: #b42318;
  --home-shadow: 0 18px 46px rgba(31, 45, 74, 0.09);
  background: var(--home-bg);
  color: var(--home-ink);
  font-family: Urbanist, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.public-home main {
  background: var(--home-bg);
}

.public-home .topbar {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--home-line);
  box-shadow: 0 10px 28px rgba(23, 32, 51, 0.06);
  color: var(--home-ink);
}

.public-home .brand span {
  color: var(--home-title);
}

.public-home .topnav {
  flex-wrap: wrap;
}

.public-home .topnav a {
  color: #4b5565;
  font-size: 14px;
  font-weight: 850;
}

.public-home .topnav a:hover {
  color: var(--home-primary);
}

.public-home .topnav .btn,
.public-home .btn {
  background: var(--home-primary);
  border: 1px solid var(--home-primary);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(96, 94, 186, 0.2);
  color: #ffffff;
}

.public-home .btn:hover {
  background: var(--home-primary-2);
  border-color: var(--home-primary-2);
}

.public-home .btn-secondary {
  background: #ffffff;
  border: 1px solid #cfd7e6;
  box-shadow: none;
  color: var(--home-title);
}

.public-home .btn-secondary:hover {
  background: #f2f5fb;
  border-color: #b7c3d7;
  color: var(--home-title);
}

.public-home h1,
.public-home h2,
.public-home h3 {
  color: var(--home-title);
  letter-spacing: 0;
}

.public-home p {
  color: var(--home-muted);
}

.home-hero-clean {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
  border-bottom: 1px solid var(--home-line);
  padding: 74px clamp(18px, 6vw, 92px) 56px;
}

.home-hero-inner,
.home-section,
.home-proof-strip,
.home-final-cta {
  margin-inline: auto;
  max-width: 1180px;
}

.home-hero-inner {
  align-items: center;
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.96fr);
}

.hero-copy-clean h1 {
  font-size: 68px;
  line-height: 1.02;
  max-width: 800px;
}

.home-kicker {
  color: var(--home-primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.home-lead {
  font-size: 20px;
  line-height: 1.65;
  margin: 22px 0 0;
  max-width: 760px;
}

.hero-assurance {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
  max-width: 760px;
}

.hero-assurance span {
  background: #ffffff;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  color: var(--home-ink);
  font-size: 14px;
  font-weight: 850;
  padding: 12px 14px;
}

.home-note {
  background: #fff8e8;
  border: 1px solid #f4d49b;
  border-radius: 8px;
  color: #7a4a05 !important;
  font-size: 14px;
  margin-top: 22px;
  max-width: 760px;
  padding: 12px 14px;
}

.hero-route-card {
  background: var(--home-surface);
  border: 1px solid var(--home-line);
  border-radius: 8px;
  box-shadow: var(--home-shadow);
  padding: 26px;
}

.route-card-head {
  align-items: center;
  border-bottom: 1px solid var(--home-line);
  display: flex;
  justify-content: space-between;
  padding-bottom: 18px;
}

.route-card-head span,
.suite-preview span,
.quote-logic-grid span,
.restriction-card span,
.partner-card span {
  color: var(--home-muted);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.route-card-head strong {
  color: var(--home-orange);
  font-size: 18px;
}

.clean-route-list {
  display: grid;
  gap: 0;
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.clean-route-list li {
  border-bottom: 1px solid var(--home-line);
  display: grid;
  gap: 16px;
  grid-template-columns: 44px minmax(0, 1fr);
  padding: 16px 0;
}

.clean-route-list li:first-child {
  padding-top: 0;
}

.clean-route-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.clean-route-list > li > span {
  align-items: center;
  background: #eef0ff;
  border-radius: 8px;
  color: var(--home-primary);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.clean-route-list strong {
  color: var(--home-title);
  display: block;
  font-size: 18px;
}

.clean-route-list p {
  line-height: 1.55;
  margin: 6px 0 0;
}

.suite-preview {
  background: var(--home-surface-2);
  border: 1px solid #d9e2ef;
  border-radius: 8px;
  padding: 18px;
}

.suite-preview strong {
  color: var(--home-title);
  display: block;
  font-size: 28px;
  margin-top: 6px;
}

.suite-preview p {
  margin: 6px 0 0;
}

.home-proof-strip {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 28px clamp(18px, 4vw, 48px) 0;
}

.home-proof-strip div {
  background: #ffffff;
  border: 1px solid var(--home-line);
  min-height: 112px;
  padding: 22px;
}

.home-proof-strip div:first-child {
  border-radius: 8px 0 0 8px;
}

.home-proof-strip div:last-child {
  border-radius: 0 8px 8px 0;
}

.home-proof-strip strong,
.home-proof-strip span {
  display: block;
}

.home-proof-strip strong {
  color: var(--home-title);
}

.home-proof-strip span {
  color: var(--home-muted);
  line-height: 1.5;
  margin-top: 6px;
}

.home-section {
  padding: 76px clamp(18px, 4vw, 48px);
}

.home-split {
  align-items: start;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
}

.home-section h2 {
  font-size: 46px;
  line-height: 1.08;
  max-width: 820px;
}

.home-section > div > p:not(.home-kicker),
.section-heading-clean > p:not(.home-kicker) {
  font-size: 18px;
  line-height: 1.7;
  max-width: 820px;
}

.step-cards,
.quote-logic-grid,
.use-case-grid,
.restriction-grid,
.pricing-clean-grid,
.faq-clean-grid,
.legal-link-grid {
  display: grid;
  gap: 16px;
}

.step-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.step-cards article,
.quote-logic-grid article,
.use-case-grid article,
.restriction-card,
.pricing-clean-grid article,
.faq-clean details,
.legal-link-grid a {
  background: #ffffff;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(23, 32, 51, 0.05);
  padding: 24px;
}

.step-cards article span {
  color: var(--home-orange);
  display: block;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
  margin-bottom: 24px;
}

.step-cards h3,
.use-case-grid h3,
.restriction-card h3,
.pricing-clean-grid h3 {
  font-size: 22px;
}

.step-cards p,
.use-case-grid p,
.pricing-clean-grid p {
  margin-bottom: 0;
}

.calculator-band {
  background: #ffffff;
  border-block: 1px solid var(--home-line);
  max-width: none;
  padding-inline: clamp(18px, 6vw, 92px);
}

.calculator-band > * {
  margin-inline: auto;
  max-width: 1180px;
}

.section-heading-clean {
  margin-bottom: 28px;
}

.quote-logic-grid,
.pricing-clean-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-logic-grid article {
  box-shadow: none;
}

.quote-logic-grid strong {
  color: var(--home-title);
  display: block;
  font-size: 24px;
  margin-top: 8px;
}

.calculator-cta {
  align-items: center;
  background: #f7f9fd;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: 18px;
  padding: 18px;
}

.calculator-cta p {
  margin: 0;
}

.use-case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.restrictions-section {
  background: #f1f5fb;
  border-radius: 8px;
  margin-top: 24px;
}

.restriction-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.restriction-card {
  box-shadow: none;
}

.restriction-card.allowed {
  border-top: 4px solid var(--home-green);
}

.restriction-card.controlled {
  border-top: 4px solid var(--home-warn);
}

.restriction-card.blocked {
  border-top: 4px solid var(--home-danger);
}

.restriction-card.allowed span {
  color: var(--home-green);
}

.restriction-card.controlled span {
  color: var(--home-warn);
}

.restriction-card.blocked span {
  color: var(--home-danger);
}

.restriction-card ul {
  color: var(--home-muted);
  line-height: 1.65;
  margin: 18px 0 0;
  padding-left: 20px;
}

.restriction-card li + li {
  margin-top: 8px;
}

.restriction-footnote {
  background: #ffffff;
  border: 1px solid #d8e0ec;
  border-radius: 8px;
  display: grid;
  gap: 6px;
  margin-top: 16px;
  padding: 18px;
}

.restriction-footnote strong {
  color: var(--home-title);
}

.restriction-footnote span {
  color: var(--home-muted);
  line-height: 1.6;
}

.selected-plan {
  border-color: rgba(96, 94, 186, 0.36) !important;
  box-shadow: var(--home-shadow) !important;
}

.pricing-clean-grid strong {
  color: var(--home-primary);
  display: block;
  font-size: 28px;
  margin: 16px 0 12px;
}

.faq-clean {
  padding-top: 42px;
}

.faq-clean-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-clean summary {
  color: var(--home-title);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq-clean details p {
  margin-bottom: 0;
}

.partner-section {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) 320px;
  margin-bottom: 34px;
  padding: 34px;
}

.partner-card {
  background: #fff8f2;
  border: 1px solid #ffd8bd;
  border-radius: 8px;
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 24px;
}

.partner-card span {
  color: var(--home-orange);
}

.partner-logo-img {
  display: block;
  height: auto;
  max-width: 260px;
  width: 100%;
}

.legal-preview {
  align-items: start;
  border-top: 1px solid var(--home-line);
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  padding-top: 60px;
}

.legal-link-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-link-grid strong,
.legal-link-grid span {
  display: block;
}

.legal-link-grid strong {
  color: var(--home-title);
  font-size: 18px;
}

.legal-link-grid span {
  color: var(--home-muted);
  line-height: 1.55;
  margin-top: 8px;
}

.home-final-cta {
  align-items: center;
  background: var(--home-title);
  border-radius: 8px;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 70px;
  padding: 34px clamp(22px, 4vw, 44px);
}

.home-final-cta h2 {
  color: #ffffff;
  font-size: 40px;
  line-height: 1.12;
  max-width: 760px;
}

.home-final-cta p {
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 0;
}

.home-final-cta .home-kicker {
  color: #bfc7ff;
}

.home-final-cta .btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
}

.public-home .footer {
  background: #ffffff;
  border-top: 1px solid var(--home-line);
}

.public-home .footer p,
.public-home .footer a {
  color: var(--home-muted);
}

.legal-document {
  margin-inline: auto;
  max-width: 1060px;
  padding: 72px clamp(18px, 5vw, 58px);
}

.legal-hero {
  margin-bottom: 30px;
}

.legal-hero h1 {
  font-size: 58px;
  line-height: 1.05;
}

.legal-hero p {
  font-size: 19px;
  max-width: 820px;
}

.legal-content {
  display: grid;
  gap: 16px;
}

.legal-content article {
  background: #ffffff;
  border: 1px solid var(--home-line);
  border-radius: 8px;
  padding: 26px;
}

.legal-content h2 {
  font-size: 24px;
}

.legal-content p {
  margin-bottom: 0;
}

.legal-content p + p {
  margin-top: 12px;
}

.public-home {
  --home-bg: #061221;
  --home-surface: #0d1b2f;
  --home-surface-2: #13243c;
  --home-ink: #dce6f6;
  --home-title: #ffffff;
  --home-muted: #9ca9bd;
  --home-line: rgba(210, 224, 244, 0.14);
  --home-primary: #ff6a13;
  --home-primary-2: #e75f10;
  --home-accent: #6b8cff;
  --home-orange: #ff8a3d;
  --home-green: #35d09f;
  --home-warn: #ffc35a;
  --home-danger: #ff7a70;
  --home-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  background:
    radial-gradient(circle at 16% 4%, rgba(255, 106, 19, 0.16), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(107, 140, 255, 0.12), transparent 34%),
    var(--home-bg);
  color: var(--home-ink);
}

.public-home main {
  background: transparent;
}

.public-home .topbar {
  background: rgba(6, 18, 33, 0.94);
  border-bottom: 1px solid rgba(210, 224, 244, 0.12);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  color: var(--home-ink);
}

.public-home .topnav a {
  color: #c8d4e6;
}

.public-home .topnav a:hover {
  color: var(--home-orange);
}

.public-home .topnav .btn,
.public-home .btn {
  background: linear-gradient(135deg, var(--home-primary), var(--home-primary-2));
  border-color: rgba(255, 138, 61, 0.8);
  box-shadow: 0 14px 28px rgba(255, 106, 19, 0.18);
  color: #ffffff;
}

.public-home .btn:hover {
  background: #f07a26;
  border-color: #f07a26;
}

.public-home .btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(210, 224, 244, 0.18);
  color: #ffffff;
}

.public-home .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 138, 61, 0.45);
  color: #ffffff;
}

.home-hero-clean {
  background:
    linear-gradient(180deg, rgba(9, 25, 45, 0.98), rgba(6, 18, 33, 0.94)),
    radial-gradient(circle at 72% 30%, rgba(255, 106, 19, 0.18), transparent 32%);
  border-bottom: 1px solid var(--home-line);
}

.home-kicker {
  color: var(--home-orange);
}

.home-lead,
.home-section > div > p:not(.home-kicker),
.section-heading-clean > p:not(.home-kicker) {
  color: var(--home-muted);
}

.hero-assurance span,
.hero-route-card,
.home-proof-strip div,
.step-cards article,
.quote-logic-grid article,
.use-case-grid article,
.restriction-card,
.pricing-clean-grid article,
.faq-clean details,
.legal-link-grid a,
.legal-content article {
  background: linear-gradient(180deg, rgba(19, 36, 60, 0.96), rgba(13, 27, 47, 0.96));
  border-color: var(--home-line);
  box-shadow: var(--home-shadow);
}

.home-note {
  background: rgba(255, 195, 90, 0.1);
  border-color: rgba(255, 195, 90, 0.24);
  color: #ffd891 !important;
}

.marketplace-strip {
  margin-inline: auto;
  max-width: 1180px;
  overflow: hidden;
  padding: 44px clamp(18px, 4vw, 48px) 14px;
}

.marketplace-copy {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  margin-bottom: 24px;
}

.marketplace-copy h2 {
  color: #ffffff;
  font-size: 38px;
  line-height: 1.12;
  margin: 0;
}

.marketplace-copy p:not(.home-kicker) {
  color: var(--home-muted);
  line-height: 1.65;
  margin: 0;
}

.marketplace-marquee {
  border: 1px solid var(--home-line);
  border-radius: 8px;
  overflow: hidden;
  padding: 16px 0;
  position: relative;
}

.marketplace-marquee::before,
.marketplace-marquee::after {
  content: "";
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 90px;
  z-index: 1;
}

.marketplace-marquee::before {
  background: linear-gradient(90deg, #061221, rgba(6, 18, 33, 0));
  left: 0;
}

.marketplace-marquee::after {
  background: linear-gradient(270deg, #061221, rgba(6, 18, 33, 0));
  right: 0;
}

.marketplace-track {
  animation: marketplace-slide 30s linear infinite;
  display: flex;
  gap: 14px;
  width: max-content;
}

.marketplace-marquee:hover .marketplace-track {
  animation-play-state: paused;
}

.marketplace-logo {
  align-items: center;
  background: linear-gradient(180deg, rgba(19, 36, 60, 0.96), rgba(13, 27, 47, 0.96));
  border: 1px solid var(--home-line);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-size: 24px;
  font-weight: 950;
  height: 78px;
  justify-content: center;
  letter-spacing: 0;
  min-width: 190px;
  padding: 0 24px;
  text-align: center;
}

.marketplace-alibaba {
  color: #ff8a3d;
}

.marketplace-shein {
  color: #f5f7fb;
  font-family: Georgia, "Times New Roman", serif;
}

.marketplace-aliexpress {
  color: #ffcc5c;
}

.marketplace-bestbuy {
  color: #ffe15a;
}

.marketplace-ebay {
  color: #7aa5ff;
}

.marketplace-amazon {
  color: #ffb347;
}

.marketplace-walmart {
  color: #8bd3ff;
}

.marketplace-temu {
  color: #ff7f50;
}

@keyframes marketplace-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.route-card-head,
.clean-route-list li {
  border-color: var(--home-line);
}

.route-card-head strong,
.step-cards article span,
.pricing-clean-grid strong {
  color: var(--home-orange);
}

.clean-route-list > li > span {
  background: rgba(255, 106, 19, 0.14);
  color: var(--home-orange);
}

.suite-preview,
.calculator-cta,
.restriction-footnote {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--home-line);
}

.calculator-band {
  background: rgba(4, 13, 25, 0.8);
  border-color: var(--home-line);
}

.quote-calculator {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
}

.quote-form,
.quote-result {
  background: linear-gradient(180deg, rgba(19, 36, 60, 0.98), rgba(13, 27, 47, 0.98));
  border: 1px solid var(--home-line);
  border-radius: 8px;
  box-shadow: var(--home-shadow);
  padding: 24px;
}

.quote-form {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quote-form .form-row {
  margin-bottom: 0;
}

.quote-form .form-row:first-child,
.quote-form .form-row:last-child,
.quote-form button {
  grid-column: 1 / -1;
}

.public-home label {
  color: #e8eef8;
}

.public-home input,
.public-home select,
.public-home textarea {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(210, 224, 244, 0.18);
  color: #ffffff;
}

.public-home input::placeholder,
.public-home textarea::placeholder {
  color: #718198;
}

.quote-result {
  display: grid;
  gap: 18px;
}

.quote-result-main {
  background: rgba(255, 106, 19, 0.1);
  border: 1px solid rgba(255, 138, 61, 0.22);
  border-radius: 8px;
  padding: 18px;
}

.quote-result-main span,
.quote-result-grid span {
  color: var(--home-muted);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-result-main strong {
  color: #ffffff;
  display: block;
  font-size: 38px;
  line-height: 1.08;
  margin-top: 8px;
}

.quote-result-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-result-grid div {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--home-line);
  border-radius: 8px;
  padding: 14px;
}

.quote-result-grid strong {
  color: #ffffff;
  display: block;
  margin-top: 6px;
}

.quote-message {
  background: rgba(107, 140, 255, 0.1);
  border: 1px solid rgba(107, 140, 255, 0.18);
  border-radius: 8px;
  margin: 0;
  padding: 14px;
}

.restrictions-section {
  background: rgba(4, 13, 25, 0.72);
  border: 1px solid var(--home-line);
}

.restriction-footnote strong,
.clean-route-list strong,
.suite-preview strong,
.home-proof-strip strong,
.quote-logic-grid strong,
.legal-link-grid strong {
  color: #ffffff;
}

.restriction-footnote span,
.legal-link-grid span {
  color: var(--home-muted);
}

.selected-plan {
  border-color: rgba(255, 138, 61, 0.42) !important;
}

.partner-section {
  background: linear-gradient(180deg, rgba(19, 36, 60, 0.96), rgba(13, 27, 47, 0.96));
  border-color: var(--home-line);
}

.partner-card {
  background: rgba(255, 106, 19, 0.08);
  border-color: rgba(255, 138, 61, 0.24);
}

.legal-preview {
  border-color: var(--home-line);
}

.home-final-cta {
  background: linear-gradient(135deg, #101f35, #061221);
  border: 1px solid var(--home-line);
  box-shadow: var(--home-shadow);
}

.public-home .footer {
  background: #061221;
  border-top-color: var(--home-line);
}

.public-home .footer p,
.public-home .footer a {
  color: var(--home-muted);
}

@media (prefers-reduced-motion: reduce) {
  .marketplace-track {
    animation: none;
  }
}

@media (max-width: 860px) {
  .topbar,
  .topnav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .public-hero,
  .grid-2,
  .grid-3,
  .form-grid,
  .app-shell,
  .address-grid,
  .trust-strip,
  .split-section,
  .comparison-grid,
  .steps-grid,
  .feature-band,
  .feature-grid,
  .pricing-grid,
  .proof-grid,
  .faq-grid,
  .route-line {
    grid-template-columns: 1fr;
  }

  .customer-sidebar {
    position: static;
  }

  .dashboard-hero,
  .plan-hero,
  .final-cta,
  .address-header,
  .section-heading,
  .activity-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .public-hero {
    min-height: auto;
  }

  .public-hero-copy h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .steps-grid article {
    min-height: 0;
  }

  .trust-strip {
    padding: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  table {
    min-width: 780px;
  }

  .table-card {
    overflow-x: auto;
  }

  .home-hero-clean {
    padding-top: 44px;
  }

  .home-hero-inner,
  .home-split,
  .hero-assurance,
  .home-proof-strip,
  .marketplace-copy,
  .quote-calculator,
  .quote-form,
  .quote-result-grid,
  .step-cards,
  .quote-logic-grid,
  .use-case-grid,
  .restriction-grid,
  .pricing-clean-grid,
  .faq-clean-grid,
  .partner-section,
  .legal-preview,
  .legal-link-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy-clean h1 {
    font-size: 44px;
  }

  .home-section h2,
  .home-final-cta h2 {
    font-size: 34px;
  }

  .home-proof-strip div,
  .home-proof-strip div:first-child,
  .home-proof-strip div:last-child {
    border-radius: 8px;
  }

  .calculator-band {
    padding-inline: 18px;
  }

  .calculator-cta,
  .home-final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .partner-section {
    padding: 24px;
  }

  .legal-hero h1 {
    font-size: 42px;
  }
}
