﻿@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

body.tomu-public-active {
  margin: 0;
  background: #f4efe8;
}

body.tomu-public-active #root[data-tomu-public-hidden="true"] {
  display: none !important;
}

#tomu-public-shell {
  min-height: 100vh;
  isolation: isolate;
}

#tomu-public-shell *,
.public-auth-modal * {
  box-sizing: border-box;
}

#tomu-public-shell button {
  font-family: inherit;
}

#tomu-public-shell .pbtn-login,
#tomu-public-shell .pbtn-demo,
#tomu-public-shell .pbtn,
#tomu-public-shell .btn {
  border: 0;
}

#tomu-public-shell .pbtn-login {
  border: 1.5px solid var(--line);
}

#tomu-public-shell .btn-line,
#tomu-public-shell .pbtn-outline-dark,
#tomu-public-shell .pbtn-ghost-light {
  border: 1.5px solid currentColor;
}

.public-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.public-auth-modal.is-open {
  display: flex;
}

.public-auth-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(212, 175, 55, .18), transparent 34%),
    linear-gradient(135deg, rgba(8, 13, 25, .82), rgba(26, 39, 68, .66));
  backdrop-filter: blur(16px);
}

.public-auth-card {
  position: relative;
  width: min(100%, 1120px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 32px;
  box-shadow: 0 42px 120px rgba(4, 10, 24, 0.42);
  padding: 0;
}

.public-auth-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.96);
  color: #1a2744;
  cursor: pointer;
  font-weight: 800;
  z-index: 3;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .14);
}

.public-auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, .96fr);
  min-height: 630px;
}

.public-auth-visual {
  position: relative;
  overflow: hidden;
  border-radius: 32px 0 0 32px;
  background: #101827;
}

.public-auth-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.04) contrast(1.04);
}

.public-auth-visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 22, .76), rgba(5, 10, 22, .28) 54%, rgba(5, 10, 22, .06)),
    linear-gradient(180deg, rgba(5, 10, 22, .08), rgba(5, 10, 22, .52));
}

.public-auth-proof {
  position: absolute;
  left: 58px;
  right: 58px;
  top: 72px;
  bottom: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  backdrop-filter: none;
}

.public-auth-proof span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #c3933b;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.public-auth-proof strong {
  display: block;
  max-width: 410px;
  font-size: clamp(46px, 5vw, 68px);
  line-height: .94;
  letter-spacing: -0.04em;
}

.public-auth-proof strong em {
  color: #c3933b;
  font-style: normal;
}

.public-auth-proof p {
  max-width: 430px;
  margin-top: 24px;
  color: rgba(255,255,255,.74);
  font-size: 17px;
  line-height: 1.65;
}

.public-auth-panel {
  padding: 88px 56px 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 80% 0%, rgba(212, 175, 55, .09), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
  border-radius: 0 32px 32px 0;
}

.public-auth-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 26px;
}

.public-auth-head img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.public-auth-head p {
  margin: 0 0 4px;
  color: #b8962e;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.public-auth-head h2 {
  margin: 0;
  color: #1a2744;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.public-auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 6px;
  border-radius: 20px;
  background: #f4f1eb;
  border: 1px solid #e8e3da;
  margin-bottom: 30px;
  box-shadow: 0 16px 38px rgba(26,39,68,.08);
}

.public-auth-tabs button {
  height: 56px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: #6c7484;
  font-weight: 800;
  cursor: pointer;
  font-size: 15px;
}

.public-auth-tabs button.active {
  background: #fff;
  color: #1a2744;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.1);
}

.public-auth-card form {
  display: grid;
  gap: 18px;
}

.public-auth-card form[hidden] {
  display: none !important;
}

.public-auth-card label {
  display: grid;
  gap: 9px;
  color: #3c4a5f;
  font-size: 13px;
  font-weight: 800;
}

.public-auth-card label span {
  color: #94a3b8;
  font-weight: 600;
}

.public-auth-card input {
  width: 100%;
  height: 60px;
  border: 1px solid #d8d2c5;
  border-radius: 18px;
  background: #fffefc;
  color: #1a2744;
  padding: 0 18px;
  font: inherit;
  font-weight: 600;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.public-auth-card input:focus {
  border-color: #b8962e;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.16);
}

.public-auth-submit {
  height: 64px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #1a2744, #111a31);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  margin-top: 12px;
  font-size: 17px;
  box-shadow: 0 20px 42px rgba(26, 39, 68, .24);
}

.public-auth-submit:disabled {
  opacity: 0.72;
  cursor: wait;
}

.public-form-message {
  min-height: 18px;
  font-size: 13px;
  color: #64748b;
}

.public-form-message.error {
  color: #dc2626;
}

.public-form-message.success {
  color: #166534;
}

#tomu-public-shell .track-result {
  display: grid;
  gap: 6px;
  margin-top: 16px;
}

#tomu-public-shell .track-result span {
  width: max-content;
  border-radius: 999px;
  background: #e7f2ec;
  color: #1f6b4a;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 800;
}

#tomu-public-shell .track-result small {
  color: #64748b;
}

/* ===================================================
   TOMUPRO LANDING - Redesign
   Theme: Cream / Navy / Gold
   =================================================== */

:root {
  --cream:     #f4efe8;
  --cream2:    #ede7de;
  --navy:      #1a2744;
  --navy2:     #111c33;
  --gold:      #D4AF37;
  --gold2:     #b8962e;
  --green:     #1f6b4a;
  --green-deep:#16513a;
  --green-ink: #11392a;
  --ink:       #1a2744;
  --body-ink:  #3c4a5f;
  --muted:     #64748b;
  --line:      #e2d9cc;
  --soft:      #f8f4ef;
  --white:     #ffffff;
  --display:   'Inter', sans-serif;
  --body:      'Inter', sans-serif;
}

.tomupro-landing * { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
.tomupro-landing {
  font-family: var(--body);
  color: var(--body-ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.tomupro-landing .wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.tomupro-landing h1, .tomupro-landing h2, .tomupro-landing h3 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.tomupro-landing a { text-decoration: none; color: inherit; }
.tomupro-landing img { max-width: 100%; display: block; }

/* ===== BUTTONS ===== */
.tomupro-landing .btn {
  display: inline-flex; align-items: center; gap: 9px;
  border: none; cursor: pointer; font-family: var(--body);
  font-weight: 700; font-size: 14px; letter-spacing: .04em;
  text-transform: uppercase; padding: 15px 28px;
  border-radius: 8px; transition: .2s;
}
.tomupro-landing .btn-primary { background: var(--navy); color: #fff; }
.tomupro-landing .btn-primary:hover { background: #243660; }
.tomupro-landing .btn-line { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.tomupro-landing .btn-line:hover { background: var(--navy); color: #fff; }

.tomupro-landing .eyebrow {
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  color: var(--gold2); text-transform: uppercase; margin-bottom: 14px;
}

/* ===== NAV ===== */
.tomupro-landing .pnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px;
  background: rgba(244, 239, 232, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.tomupro-landing .pnav.pnav-scrolled {
  background: rgba(244, 239, 232, 0.97);
  border-color: var(--line);
  box-shadow: 0 2px 20px rgba(26, 39, 68, 0.08);
}
.tomupro-landing .pnav-inner {
  max-width: 1280px; margin: 0 auto; height: 100%;
  padding: 0 28px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
}
.tomupro-landing .pbrand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.tomupro-landing .pbrand img { height: 38px; width: auto; border-radius: 8px; }
.tomupro-landing .pbrand-text b {
  font-family: var(--display); font-weight: 800; font-size: 20px;
  letter-spacing: -0.01em; color: var(--ink); display: block; line-height: 1;
}
.tomupro-landing .pbrand-text b span { color: var(--gold); }
.tomupro-landing .pbrand-text small {
  font-size: 9px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); display: block; margin-top: 2px;
}
.tomupro-landing .plinks {
  flex: 1; display: flex; align-items: center;
  justify-content: center; gap: 30px;
}
.tomupro-landing .plinks a {
  font-size: 14px; font-weight: 500; color: var(--body-ink); transition: .15s;
}
.tomupro-landing .plinks a:hover { color: var(--navy); }
.tomupro-landing .pnav-cta { flex-shrink: 0; display: flex; align-items: center; gap: 10px; }
.tomupro-landing .pbtn-login {
  display: inline-flex; align-items: center; gap: 7px;
  height: 40px; padding: 0 16px; border-radius: 8px;
  border: 1.5px solid var(--line); background: transparent;
  color: var(--ink); font-weight: 600; font-size: 14px; transition: .2s;
}
.tomupro-landing .pbtn-login:hover { border-color: var(--navy); background: rgba(26,39,68,.05); }
.tomupro-landing .pbtn-login svg { width: 16px; height: 16px; }
.tomupro-landing .pbtn-demo {
  display: inline-flex; align-items: center;
  height: 40px; padding: 0 20px; border-radius: 8px;
  background: var(--navy); color: #fff;
  font-weight: 700; font-size: 14px; transition: .2s; white-space: nowrap;
}
.tomupro-landing .pbtn-demo:hover { background: #243660; }
.tomupro-landing .pmenu { display: none; background: none; border: none; color: var(--ink); font-size: 24px; cursor: pointer; }
.tomupro-landing .menu-only { display: none; }

/* ===== HERO ===== */
.tomupro-landing .phero {
  background: var(--cream);
  padding-top: 72px;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  position: relative;
}
.tomupro-landing .phero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 50%, rgba(212,175,55,.07) 0%, transparent 70%);
  pointer-events: none;
}
.tomupro-landing .phero-inner {
  max-width: 1280px; margin: 0 auto; padding: 60px 28px 80px;
  width: 100%; display: grid; grid-template-columns: 1fr 1.1fr;
  align-items: center; gap: 56px;
}
.tomupro-landing .phero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(212,175,55,.12); border: 1px solid rgba(212,175,55,.3);
  color: var(--gold2); font-size: 11px; font-weight: 800;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 24px;
  letter-spacing: 1px; text-transform: uppercase;
}
.tomupro-landing .phero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  animation: pulse 2s infinite; flex-shrink: 0;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.4)} }
.tomupro-landing .phero h1 {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900; letter-spacing: -2.5px; line-height: 1.02;
  color: var(--navy); margin-bottom: 24px;
}
.tomupro-landing .phero-accent { color: var(--gold); }
.tomupro-landing .phero-sub {
  font-size: 17px; color: var(--muted); line-height: 1.75;
  max-width: 480px; margin-bottom: 36px;
}
.tomupro-landing .phero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.tomupro-landing .pbtn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 54px; padding: 0 32px; border-radius: 10px;
  font-weight: 700; font-size: 16px; cursor: pointer; transition: .2s;
}
.tomupro-landing .pbtn-dark { background: var(--navy); color: #fff; border: none; }
.tomupro-landing .pbtn-dark:hover { background: #243660; transform: translateY(-1px); }
.tomupro-landing .pbtn-outline-dark { background: transparent; color: var(--navy); border: 1.5px solid rgba(26,39,68,.25); }
.tomupro-landing .pbtn-outline-dark:hover { border-color: var(--navy); background: rgba(26,39,68,.05); }
.tomupro-landing .pbtn-gold { background: var(--gold); color: #111; border: none; }
.tomupro-landing .pbtn-gold:hover { background: #e0bd4e; transform: translateY(-1px); }
.tomupro-landing .pbtn-ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.tomupro-landing .pbtn-ghost-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.8); }
.tomupro-landing .phero-trust {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--muted); flex-wrap: wrap;
}
.tomupro-landing .phero-trust svg { color: var(--gold2); flex-shrink: 0; }

/* ===== DASHBOARD MOCKUP ===== */
.tomupro-landing .phero-visual { position: relative; }
.tomupro-landing .dash-mock {
  background: #fff; border-radius: 16px;
  box-shadow: 0 32px 80px rgba(26,39,68,.16), 0 8px 24px rgba(26,39,68,.08);
  border: 1px solid var(--line); overflow: hidden;
}
.tomupro-landing .dash-bar {
  background: #f5f5f5; padding: 10px 16px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid #eee;
}
.tomupro-landing .dash-dots { display: flex; gap: 6px; }
.tomupro-landing .dash-dots span { width: 11px; height: 11px; border-radius: 50%; }
.tomupro-landing .dash-dots span:nth-child(1) { background: #ff5f57; }
.tomupro-landing .dash-dots span:nth-child(2) { background: #ffbd2e; }
.tomupro-landing .dash-dots span:nth-child(3) { background: #28c840; }
.tomupro-landing .dash-url {
  flex: 1; background: #e8e8e8; border-radius: 5px;
  padding: 4px 10px; font-size: 11px; color: #888; font-family: monospace;
}
.tomupro-landing .dash-notif {
  display: flex; align-items: center; gap: 5px;
  background: #e7f2ec; color: var(--green);
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 100px;
}
.tomupro-landing .notif-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  animation: pulse 2s infinite;
}
.tomupro-landing .dash-body { padding: 20px; }
.tomupro-landing .dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 20px; }
.tomupro-landing .dstat { background: #f8f9fb; border-radius: 10px; padding: 14px; border: 1px solid #eef0f4; }
.tomupro-landing .dstat-label { font-size: 10px; color: #94a3b8; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 4px; }
.tomupro-landing .dstat-val { font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: -.5px; }
.tomupro-landing .dstat-badge { display: inline-block; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 4px; margin-top: 5px; }
.tomupro-landing .dstat-badge.green { background: #dcfce7; color: #16a34a; }
.tomupro-landing .dstat-badge.blue  { background: #dbeafe; color: #1d4ed8; }
.tomupro-landing .dash-chart-title { font-size: 12px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.tomupro-landing .dash-chart { height: 70px; display: flex; align-items: flex-end; gap: 5px; }
.tomupro-landing .dash-bar-item { flex: 1; border-radius: 4px 4px 0 0; background: #e8e8e8; }
.tomupro-landing .dash-bar-item.md { background: var(--gold); }
.tomupro-landing .dash-bar-item.hi { background: var(--navy); }
.tomupro-landing .dash-orders { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.tomupro-landing .do-row {
  display: flex; align-items: center; gap: 10px;
  background: #f8f9fb; border-radius: 8px; padding: 10px 12px;
  border: 1px solid #eef0f4;
}
.tomupro-landing .do-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.tomupro-landing .do-info { flex: 1; }
.tomupro-landing .do-id { font-size: 12px; font-weight: 700; color: var(--navy); }
.tomupro-landing .do-loc { font-size: 11px; color: var(--muted); }
.tomupro-landing .do-status { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px; white-space: nowrap; }
.tomupro-landing .do-status.delivered { background: #dcfce7; color: #16a34a; }
.tomupro-landing .do-status.transit   { background: #dbeafe; color: #1d4ed8; }
.tomupro-landing .do-status.pending   { background: #fef9c3; color: #b45309; }

/* Floating cards */
.tomupro-landing .float-card {
  position: absolute; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(26,39,68,.12);
  display: flex; align-items: center; gap: 10px; white-space: nowrap;
}
.tomupro-landing .fc-icon { width: 32px; height: 32px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.tomupro-landing .fc-title { font-size: 12px; font-weight: 700; color: var(--navy); }
.tomupro-landing .fc-sub { font-size: 11px; color: var(--muted); }
.tomupro-landing .fc-top { top: -18px; right: 20px; animation: floatA 4s ease-in-out infinite; }
.tomupro-landing .fc-bottom { bottom: 20px; left: -20px; animation: floatB 4.5s ease-in-out infinite; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes floatB { 0%,100%{transform:translateY(0)} 50%{transform:translateY(7px)} }

/* ===== STATS STRIP ===== */
.tomupro-landing .stats-strip { background: var(--navy2); padding: 56px 28px; }
.tomupro-landing .stats-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 40px; }
.tomupro-landing .sstat { text-align: center; }
.tomupro-landing .sstat-icon { font-size: 28px; margin-bottom: 12px; opacity: .8; }
.tomupro-landing .sstat-num { font-size: 46px; font-weight: 900; letter-spacing: -2px; color: #fff; line-height: 1; }
.tomupro-landing .sstat-num span { color: var(--gold); }
.tomupro-landing .sstat-label { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 6px; font-weight: 500; }

/* ===== SECTIONS ===== */
.tomupro-landing section { padding: 96px 0; }
.tomupro-landing .section-alt { background: var(--soft); }
.tomupro-landing .split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.tomupro-landing .split .txt .eyebrow { margin-bottom: 12px; }
.tomupro-landing .split h2 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -1.5px; }
.tomupro-landing .split p { font-size: 17px; color: var(--muted); margin: 20px 0 28px; max-width: 440px; line-height: 1.7; }

/* Photo card */
.tomupro-landing .photo-card { border-radius: 20px; overflow: hidden; position: relative; aspect-ratio: 4/3; }
.tomupro-landing .photo-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.tomupro-landing .photo-card:hover img { transform: scale(1.04); }
.tomupro-landing .photo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,28,51,.7) 0%, transparent 60%); display: flex; align-items: flex-end; padding: 24px; }
.tomupro-landing .photo-tag { display: inline-block; background: var(--gold); color: #111; font-size: 11px; font-weight: 800; padding: 5px 12px; border-radius: 100px; letter-spacing: 1px; text-transform: uppercase; }

/* Screen (dashboard screenshot) */
.tomupro-landing .screen { border-radius: 14px; overflow: hidden; background: #0d1117; box-shadow: 0 32px 72px rgba(17,28,51,.18); border: 1px solid var(--line); }
.tomupro-landing .screen-lg { box-shadow: 0 40px 80px rgba(17,28,51,.2); }
.tomupro-landing .screen-bar { display: flex; align-items: center; gap: 7px; padding: 11px 14px; background: #11161d; }
.tomupro-landing .screen-bar span { width: 11px; height: 11px; border-radius: 50%; background: #3a424d; }
.tomupro-landing .screen-bar span:nth-child(1) { background: #e5685a; }
.tomupro-landing .screen-bar span:nth-child(2) { background: #e0b341; }
.tomupro-landing .screen-bar span:nth-child(3) { background: #54b265; }
.tomupro-landing .screen img { width: 100%; display: block; }

/* Check list */
.tomupro-landing .check-list { display: flex; flex-direction: column; gap: 10px; margin: 6px 0 28px; }
.tomupro-landing .check-item { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--body-ink); }
.tomupro-landing .check-mark { width: 22px; height: 22px; border-radius: 50%; background: rgba(26,39,68,.1); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; flex-shrink: 0; }

/* Service tags */
.tomupro-landing .svc-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 6px 0 28px; }
.tomupro-landing .svc-tag { font-size: 12px; font-weight: 700; letter-spacing: .04em; color: var(--navy); background: rgba(26,39,68,.1); border-radius: 999px; padding: 8px 14px; }

/* ===== FEATURES v2 ===== */
.tomupro-landing .feat-sec {
  background:
    radial-gradient(circle at 50% -10%, rgba(212,175,55,.16), transparent 34%),
    radial-gradient(circle at 15% 25%, rgba(59,130,246,.09), transparent 30%),
    linear-gradient(180deg, #07101e 0%, #0c1425 48%, #07101e 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.tomupro-landing .feat-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  height: auto;
  background:
    linear-gradient(22deg, transparent 0 18%, rgba(212,175,55,.18) 18.08%, transparent 18.35%),
    linear-gradient(158deg, transparent 0 21%, rgba(212,175,55,.11) 21.08%, transparent 21.35%);
  opacity: .75;
  z-index: 0;
}
.tomupro-landing .feat-sec .wrap { position: relative; z-index: 1; }
.tomupro-landing .feat-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.tomupro-landing .feat-sec .eyebrow { color: #c3933b; }
.tomupro-landing .feat-head h2 {
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.045em;
}
.tomupro-landing .feat-head h2::first-line { color: #fff; }
.tomupro-landing .feat-head p { color: rgba(255,255,255,.76); font-size: 18px; margin-top: 18px; line-height: 1.65; }
.tomupro-landing .feats-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.tomupro-landing .feat-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,.22);
  background:
    linear-gradient(180deg, rgba(22,34,56,.82), rgba(8,16,30,.9));
  box-shadow: 0 28px 80px rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.tomupro-landing .feat-card:hover {
  transform: translateY(-7px);
  border-color: rgba(212,175,55,.55);
  box-shadow: 0 36px 96px rgba(0,0,0,.34);
}
.tomupro-landing .feat-index {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212,175,55,.46);
  border-radius: 8px;
  background: rgba(7,16,30,.76);
  color: #d4af37;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
}
.tomupro-landing .feat-media {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: transparent;
}
.tomupro-landing .feat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.tomupro-landing .feat-card:hover .feat-media img { transform: scale(1.05); }
.tomupro-landing .feat-card-body { position: relative; padding: 20px 26px 28px; min-height: 218px; }
.tomupro-landing .feat-card-tag {
  display: inline-block;
  background: transparent;
  color: #d4af37;
  font-size: 11px;
  font-weight: 900;
  padding: 0;
  border-radius: 0;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.tomupro-landing .feat-card h3 { font-size: 21px; font-weight: 850; color: #fff; margin-bottom: 12px; letter-spacing: -.02em; }
.tomupro-landing .feat-card p { max-width: 88%; font-size: 15px; color: rgba(255,255,255,.72); line-height: 1.68; }
.tomupro-landing .feat-arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #d6a24b, #9f6b21);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(156,107,33,.35);
}

/* ===== FULFILLMENT + TRACK ===== */
.tomupro-landing .full { position: relative; color: #fff; text-align: center; overflow: hidden; padding: 120px 0 90px; }
.tomupro-landing .full-bg { position: absolute; inset: 0; background-image: url('/assets/landing/warehouse-fulfillment.jpg'); background-size: cover; background-position: center; z-index: 0; }
.tomupro-landing .full-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(17,28,51,.7), rgba(17,28,51,.82)); z-index: 1; }
.tomupro-landing .full-inner { position: relative; z-index: 2; }
.tomupro-landing .full h2 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; color: #fff; }
.tomupro-landing .full p { font-size: 18px; color: rgba(255,255,255,.85); margin-top: 16px; }
.tomupro-landing .track-wrap { background: #fff; color: var(--ink); max-width: 760px; margin: 46px auto 0; border-radius: 16px; padding: 40px 36px; box-shadow: 0 30px 60px rgba(0,0,0,.25); position: relative; z-index: 2; }
.tomupro-landing .track-wrap h3 { font-size: 24px; font-weight: 700; text-align: center; margin-bottom: 24px; }
.tomupro-landing .track-row { display: flex; gap: 12px; }
.tomupro-landing .track-row input { flex: 1; border: 1.5px solid var(--line); background: var(--soft); border-radius: 8px; padding: 14px 16px; font-family: var(--body); font-size: 15px; outline: none; }
.tomupro-landing .track-row input:focus { border-color: var(--navy); }
.tomupro-landing .track-eg { text-align: center; color: var(--muted); font-size: 13px; margin-top: 14px; }
.tomupro-landing .track-result { margin-top: 20px; }

/* ===== SUCCESS STORY ===== */
.tomupro-landing .success { background: #f7f6f2; }
.tomupro-landing .success-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.tomupro-landing .badge-gold { display: inline-flex; align-items: center; gap: 9px; background: #f3ead4; color: #9c7a2e; font-weight: 700; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; padding: 10px 18px; border-radius: 999px; }
.tomupro-landing .success h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; margin: 22px 0 0; }
.tomupro-landing .success .lead { font-size: 16px; color: var(--muted); margin: 20px 0 0; max-width: 470px; line-height: 1.7; }
.tomupro-landing .stats-card { background: #161a18; border-radius: 16px; padding: 30px 28px; display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin: 30px 0 34px; }
.tomupro-landing .stat-i { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid rgba(212,175,55,.45); display: grid; place-items: center; color: var(--gold); margin-bottom: 16px; }
.tomupro-landing .stat-i svg { width: 24px; height: 24px; }
.tomupro-landing .stat-n { font-weight: 800; font-size: 33px; color: var(--gold); line-height: 1; }
.tomupro-landing .stat-l { color: #fff; font-weight: 600; font-size: 14px; margin-top: 8px; }
.tomupro-landing .stat-s { color: rgba(255,255,255,.5); font-size: 12px; margin-top: 4px; }
.tomupro-landing .tst { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; }
.tomupro-landing .tst .av { width: 62px; height: 62px; border-radius: 50%; object-fit: cover; }
.tomupro-landing .tst .nm { font-weight: 700; font-size: 17px; color: var(--ink); }
.tomupro-landing .tst .ro { color: var(--gold2); font-weight: 600; font-size: 13px; margin-bottom: 10px; }
.tomupro-landing .tst .qt { font-size: 14px; color: var(--body-ink); line-height: 1.6; }
.tomupro-landing .tst .pn { font-weight: 700; font-size: 14px; color: var(--ink); margin-top: 12px; }
.tomupro-landing .tst .pr { color: var(--muted); font-size: 13px; }
.tomupro-landing .success-photo { border-radius: 20px; overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,.14); aspect-ratio: 1/1; }
.tomupro-landing .success-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tomupro-landing .quote-card { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 28px 32px; margin-top: 22px; display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; }
.tomupro-landing .quote-card .qm { font-weight: 800; font-size: 48px; color: var(--gold); line-height: .7; }
.tomupro-landing .quote-card p { font-size: 17px; font-style: italic; color: var(--body-ink); line-height: 1.55; }

/* ===== BLOG PREVIEW ===== */
.tomupro-landing .blog-sec {
  background: var(--white);
  border-top: 1px solid var(--line);
}
.tomupro-landing .blog-home-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.tomupro-landing .blog-home-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(26,39,68,.07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.tomupro-landing .blog-home-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212,175,55,.55);
  box-shadow: 0 22px 52px rgba(26,39,68,.12);
}
.tomupro-landing .blog-home-thumb {
  aspect-ratio: 16 / 9;
  background: #eef0f4;
  overflow: hidden;
}
.tomupro-landing .blog-home-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.tomupro-landing .blog-home-card:hover .blog-home-thumb img {
  transform: scale(1.04);
}
.tomupro-landing .blog-home-thumb-fallback {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(26,39,68,.94), rgba(15,76,53,.88)),
    radial-gradient(circle at 80% 20%, rgba(212,175,55,.25), transparent 40%);
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
}
.tomupro-landing .blog-home-card .blog-home-meta {
  color: var(--gold2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 22px 24px 0;
}
.tomupro-landing .blog-home-card h3 {
  color: var(--navy);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.25;
  margin: 10px 24px 0;
}
.tomupro-landing .blog-home-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  margin: 12px 24px 20px;
  flex: 1;
}
.tomupro-landing .blog-home-read {
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
  padding: 0 24px 24px;
}
.tomupro-landing .blog-home-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.tomupro-landing .soro-blog-shell {
  position: relative;
  min-height: 280px;
  border: 1px solid rgba(226,217,204,.92);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(250,247,241,.98));
  box-shadow: 0 22px 64px rgba(26,39,68,.09);
  overflow: hidden;
}
.tomupro-landing.tomupro-blog-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(212,175,55,.10), transparent 34%),
    linear-gradient(180deg, #fbfaf7 0%, #fff 44%, #f8f5ef 100%);
}
.tomupro-landing .blog-page-main {
  padding-top: 92px;
}
.tomupro-landing .blog-page-hero {
  min-height: calc(100vh - 260px);
  padding: 120px 28px 96px;
  border-top: 0;
  background: transparent;
}
.tomupro-landing .blog-page-hero h1 {
  margin: 18px auto 14px;
  max-width: 900px;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -1.5px;
  text-align: center;
}
.tomupro-landing .blog-page-hero .feat-head p {
  max-width: 760px;
}
.tomupro-landing.tomupro-blog-page .soro-blog-shell {
  max-width: 1320px;
  margin: 54px auto 0;
  min-height: 360px;
}
.tomupro-landing #soro-blog {
  position: relative;
  z-index: 2;
  min-height: 220px;
}
.tomupro-landing #soro-blog:not(:empty) + .soro-blog-fallback,
.tomupro-landing .soro-blog-shell.is-loaded .soro-blog-fallback {
  display: none;
}
.tomupro-landing .soro-blog-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 34px;
}
.tomupro-landing .soro-blog-fallback h3 {
  color: var(--navy);
  font-size: 24px;
  font-weight: 850;
  margin: 10px 0 8px;
}
.tomupro-landing .soro-blog-fallback p {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 20px;
}
.tomupro-landing .soro-blog-failed + .soro-blog-fallback {
  display: grid;
}

/* ===== CTA BANNER ===== */
.tomupro-landing .cta-banner { background: var(--navy); padding: 100px 28px; text-align: center; position: relative; overflow: hidden; }
.tomupro-landing .cta-banner::before { content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%); width: 600px; height: 400px; background: radial-gradient(circle, rgba(212,175,55,.12) 0%, transparent 70%); pointer-events: none; }
.tomupro-landing .cta-inner { max-width: 680px; margin: 0 auto; position: relative; }
.tomupro-landing .cta-banner h2 { font-size: clamp(36px, 5vw, 58px); font-weight: 900; color: #fff; letter-spacing: -2px; margin-bottom: 18px; }
.tomupro-landing .cta-accent { color: var(--gold); }
.tomupro-landing .cta-banner p { font-size: 17px; color: rgba(255,255,255,.55); margin-bottom: 40px; line-height: 1.7; }
.tomupro-landing .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.tomupro-landing .contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; }
.tomupro-landing .contact-head h2 { font-size: clamp(30px, 4vw, 44px); font-weight: 800; margin: 14px 0 30px; }
.tomupro-landing .cinfo { margin-bottom: 26px; }
.tomupro-landing .cinfo .lbl { font-weight: 700; font-size: 15px; color: var(--ink); margin-bottom: 5px; }
.tomupro-landing .cinfo a, .tomupro-landing .cinfo span { color: var(--green); font-size: 15px; }
.tomupro-landing .cinfo .addr { color: var(--muted); font-size: 15px; }
.tomupro-landing .form { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 34px; box-shadow: 0 10px 30px rgba(26,39,68,.06); }
.tomupro-landing .field { margin-bottom: 18px; }
.tomupro-landing .field label { font-weight: 600; font-size: 13px; color: var(--ink); display: block; margin-bottom: 8px; }
.tomupro-landing .field label .req { color: var(--gold2); }
.tomupro-landing .field input, .tomupro-landing .field textarea { width: 100%; border: 1.5px solid var(--line); border-radius: 8px; padding: 13px 14px; font-family: var(--body); font-size: 15px; background: var(--soft); outline: none; transition: .15s; }
.tomupro-landing .field input:focus, .tomupro-landing .field textarea:focus { border-color: var(--navy); background: #fff; }
.tomupro-landing .form .btn { width: 100%; justify-content: center; }
.tomupro-landing .form-ok { display: none; text-align: center; padding: 24px 8px; }
.tomupro-landing .form-ok.show { display: block; }
.tomupro-landing .form-ok .ok-ic { width: 56px; height: 56px; border-radius: 50%; background: #e7f2ec; color: var(--green); display: grid; place-items: center; font-size: 26px; margin: 0 auto 16px; }
.tomupro-landing .form-ok h3 { font-size: 20px; font-weight: 700; }
.tomupro-landing .form-ok p { color: var(--muted); font-size: 14px; margin-top: 8px; }

/* ===== FOOTER ===== */
footer { background: #0c1425; color: rgba(255,255,255,.7); padding: 70px 0 30px; }
.tomupro-landing .foot { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 36px; }
.tomupro-landing .fbrand-top { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.tomupro-landing .fgriffin { height: 38px; width: auto; border-radius: 8px; }
.tomupro-landing .foot .fbrand b { font-weight: 800; font-size: 22px; color: #fff; }
.tomupro-landing .foot .fbrand b span { color: var(--gold); }
.tomupro-landing .foot .fbrand p { font-size: 14px; margin-top: 10px; max-width: 260px; color: rgba(255,255,255,.5); line-height: 1.6; }
.tomupro-landing .foot h5 { font-weight: 700; font-size: 14px; color: #fff; margin-bottom: 20px; }
.tomupro-landing .foot .frow2 { display: flex; gap: 10px; font-size: 14px; margin-bottom: 14px; color: rgba(255,255,255,.6); }
.tomupro-landing .foot .frow2 .i { color: var(--gold); flex-shrink: 0; }
.tomupro-landing .foot .frow2 a { color: rgba(255,255,255,.6); }
.tomupro-landing .foot .frow2 a:hover { color: #fff; }
.tomupro-landing .hours div { display: flex; justify-content: space-between; font-size: 13.5px; margin-bottom: 10px; }
.tomupro-landing .hours .d { color: rgba(255,255,255,.5); }
.tomupro-landing .hours .t { color: rgba(255,255,255,.85); }
.tomupro-landing .foot-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 54px; padding-top: 24px; text-align: center; font-size: 13px; color: rgba(255,255,255,.35); }
.tomupro-landing .foot-bottom b { color: rgba(255,255,255,.7); }

/* ===== REVEAL ANIMATION ===== */
.tomupro-landing .rv { opacity: 0; transform: translateY(24px); transition: .7s ease; }
.tomupro-landing .rv.in { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .tomupro-landing .phero-inner { gap: 36px; }
  .tomupro-landing .phero h1 { font-size: 52px; }
}
@media (max-width: 880px) {
  .public-auth-card { width: min(100%, 560px); padding: 0; border-radius: 28px; }
  .public-auth-layout { grid-template-columns: 1fr; min-height: auto; }
  .public-auth-visual { display: block; min-height: 280px; border-radius: 28px 28px 0 0; }
  .public-auth-panel { padding: 36px 28px 30px; border-radius: 0 0 28px 28px; }
  .public-auth-close { top: 16px; right: 16px; }
  .public-auth-proof { left: 30px; right: 30px; top: 34px; }
  .public-auth-proof strong { font-size: 42px; }
  .public-auth-proof p { margin-top: 14px; font-size: 14px; }
  .tomupro-landing .plinks { display: none; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: flex-start; gap: 0; background: rgba(244,239,232,.98); padding: 8px 0; border-bottom: 1px solid var(--line); box-shadow: 0 8px 20px rgba(26,39,68,.08); }
  .tomupro-landing .plinks.open { display: flex; }
  .tomupro-landing .plinks a { padding: 14px 28px; width: 100%; color: var(--body-ink); }
  .tomupro-landing .pnav-cta { display: none; }
  .tomupro-landing .pmenu { display: block; }
  .tomupro-landing .menu-only { display: block; }
  .tomupro-landing .phero-inner { grid-template-columns: 1fr; }
  .tomupro-landing .phero-visual { display: none; }
  .tomupro-landing .stats-inner { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .tomupro-landing .split, .tomupro-landing .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .tomupro-landing .split.rev .txt { order: 2; }
  .tomupro-landing .feats-v2 { grid-template-columns: 1fr; }
  .tomupro-landing .feat-media { height: 240px; }
  .tomupro-landing .blog-home-grid { grid-template-columns: 1fr; }
  .tomupro-landing .success-grid { grid-template-columns: 1fr; gap: 36px; }
  .tomupro-landing .foot { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tomupro-landing section { padding: 70px 0; }
  .tomupro-landing .full { padding: 80px 0 60px; }
  .tomupro-landing .fc-top, .tomupro-landing .fc-bottom { display: none; }
}
@media (max-width: 640px) {
  .public-auth-modal { padding: 12px; align-items: flex-start; }
  .public-auth-card { margin-top: 18px; border-radius: 22px; }
  .public-auth-visual { min-height: 220px; border-radius: 22px 22px 0 0; }
  .public-auth-proof strong { font-size: 34px; }
  .public-auth-proof p { display: none; }
  .public-auth-head h2 { font-size: 31px; }
  .public-auth-tabs button { height: 44px; }
  .public-auth-card input { height: 52px; }
  .tomupro-landing .feats-v2 { grid-template-columns: 1fr; }
  .tomupro-landing .stats-card { grid-template-columns: 1fr; gap: 24px; }
  .tomupro-landing .track-row { flex-direction: column; }
  .tomupro-landing .phero h1 { font-size: 40px; letter-spacing: -1.5px; }
  .tomupro-landing .foot { grid-template-columns: 1fr; }
  .tomupro-landing .cta-btns { flex-direction: column; align-items: center; }
  .tomupro-landing .phero-cta { flex-direction: column; }
  .tomupro-landing .pbtn { width: 100%; }
}
