/* SmartCollect landing — modern, simple, outstanding. */

:root {
  --bg: #f6f8f6;
  --surface: #ffffff;
  --ink: #0a1f1f;
  --ink-2: #1f3a3a;
  --muted: #4f6363;
  --line: #e2ebe5;
  --line-2: #d7e2da;
  --primary: #0e3b3b;
  --primary-2: #1f6363;
  --primary-soft: #e8f1ee;
  --accent: #c7f46c;
  --accent-2: #a3e635;
  --accent-ink: #1a3300;
  --shadow-sm: 0 1px 2px rgba(10, 31, 31, 0.04), 0 2px 8px rgba(10, 31, 31, 0.05);
  --shadow-md: 0 6px 20px rgba(10, 31, 31, 0.08);
  --shadow-lg: 0 24px 48px -12px rgba(10, 31, 31, 0.18);
  --radius: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.5rem;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --max: 76rem;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; }

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus { left: 1rem; top: 1rem; background: var(--primary); color: #fff; padding: .5rem .75rem; border-radius: .5rem; z-index: 200; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-2);
  background: var(--primary-soft);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
}
.eyebrow--center { display: inline-block; margin-bottom: 1rem; }

/* ========== Nav ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 248, 246, 0.85);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(215, 226, 218, 0.6);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.logo-mark { display: inline-flex; line-height: 0; }
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.75rem;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--primary); outline: none; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--accent);
  text-decoration: none;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--accent-2);
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(163, 230, 53, 0.35); }

@media (max-width: 820px) {
  .nav-links { display: none; }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 8vw, 6.5rem) 1.25rem clamp(3rem, 6vw, 5rem);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
}
.hero-glow--a {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(199, 244, 108, 0.45), transparent 60%);
  top: -120px; right: -100px;
}
.hero-glow--b {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(31, 99, 99, 0.25), transparent 60%);
  bottom: -200px; left: -160px;
}

.hero-inner, .hero-visual {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
}
.hero-inner { text-align: left; max-width: 56rem; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.6vw, 4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 1rem 0 1.25rem;
}
.hero-title-accent {
  background: linear-gradient(120deg, var(--primary-2) 0%, #2a8a8a 60%, var(--accent-2) 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-intro {
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  color: var(--muted);
  margin: 0 0 1.75rem;
  max-width: 38rem;
  line-height: 1.6;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}
.hero-trust {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 1.25rem 1.75rem;
  font-size: 0.92rem; color: var(--muted);
}
.hero-trust li::before {
  content: ""; display: inline-block; width: 6px; height: 6px;
  background: var(--accent-2); border-radius: 50%;
  margin-right: 0.55rem; vertical-align: middle;
}
.hero-trust strong { color: var(--ink); font-weight: 600; }

/* hero visual cards */
.hero-visual {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) {
  .hero-visual { grid-template-columns: 1.05fr 0.95fr; gap: 1.5rem; }
}
.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.25rem 1rem;
  box-shadow: var(--shadow-md);
}
.hero-card-header {
  display: flex; align-items: center; gap: 0.6rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px dashed var(--line);
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
}
.hero-card-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #1ec96b;
  box-shadow: 0 0 0 4px rgba(30, 201, 107, 0.15);
}
.hero-card-dot--accent { background: var(--accent-2); box-shadow: 0 0 0 4px rgba(163, 230, 53, 0.18); }
.hero-card-title { font-weight: 600; color: var(--ink); }
.hero-card-badge {
  margin-left: auto;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a4d2a;
  background: #d6f5e0;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
}
.hero-card-badge--accent { color: var(--accent-ink); background: #ecfbcf; }
.hero-card-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.9rem;
  padding: 0.35rem 0;
  color: var(--muted);
}
.hero-card-row strong { color: var(--ink); font-weight: 600; }
.route-list { list-style: none; margin: 0; padding: 0; font-size: 0.9rem; }
.route-list li {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.45rem 0;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.route-list li:last-child { border-bottom: 0; }
.route-pin {
  width: 10px; height: 10px; border-radius: 50%;
  background: transparent;
  border: 2px solid var(--line-2);
  flex-shrink: 0;
}
.route-pin--done { background: var(--primary-2); border-color: var(--primary-2); }
.route-pin--current {
  background: var(--accent-2); border-color: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(163, 230, 53, 0.25);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(163, 230, 53, 0.25); }
  50% { box-shadow: 0 0 0 7px rgba(163, 230, 53, 0.12); }
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s, border-color 0.15s;
  cursor: pointer;
  line-height: 1;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--ink); border-color: var(--ink); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: var(--surface);
  color: var(--primary);
  border-color: var(--line-2);
}
.btn-secondary:hover { border-color: var(--primary); transform: translateY(-1px); }
.btn-on-dark {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent-2);
}
.btn-on-dark:hover { background: #d8fa84; transform: translateY(-1px); box-shadow: 0 8px 18px rgba(163, 230, 53, 0.3); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.55); }

/* ========== Strip ========== */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 720px) {
  .strip-inner { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}
.stat { display: flex; flex-direction: column; gap: 0.15rem; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label { font-size: 0.85rem; color: var(--muted); }

/* ========== Sections ========== */
.section {
  padding: clamp(3.5rem, 7vw, 6rem) 1.25rem;
}
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.section-features .section-inner,
.section-apps .section-inner,
.section-how .section-inner { text-align: center; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.85rem;
  line-height: 1.15;
}
.section-lead {
  font-size: 1.075rem;
  color: var(--muted);
  margin: 0 auto 3rem;
  max-width: 38rem;
  line-height: 1.6;
}

/* ========== Features ========== */
.feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  text-align: left;
}
@media (min-width: 640px) { .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 960px) { .feature-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.5rem 1.4rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.feature:hover {
  border-color: var(--primary-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem; height: 2.6rem;
  border-radius: 0.7rem;
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 1rem;
}
.feature-icon svg { width: 1.4rem; height: 1.4rem; }
.feature-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
  color: var(--ink);
}
.feature p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ========== Apps ========== */
.section-apps { background: var(--primary-soft); }
.apps-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  text-align: left;
}
@media (min-width: 900px) { .apps-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.app-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.app-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--primary-2); }

.app-card-visual {
  padding: 1.75rem 1.75rem 1.5rem;
  background: linear-gradient(140deg, var(--primary) 0%, #185555 65%, #2a8a8a 110%);
  position: relative;
  overflow: hidden;
}
.app-card-visual::after {
  content: ""; position: absolute; top: -40%; right: -20%;
  width: 60%; height: 160%;
  background: radial-gradient(circle, rgba(199, 244, 108, 0.25), transparent 70%);
  pointer-events: none;
}

/* mock window (coordinator) */
.mock-window {
  position: relative; z-index: 1;
  background: var(--surface);
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  font-size: 0.85rem;
}
.mock-window-bar {
  display: flex; gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  background: #f0f5f3;
  border-bottom: 1px solid var(--line);
}
.mock-window-bar span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--line-2);
}
.mock-window-bar span:first-child { background: #ff5f57; }
.mock-window-bar span:nth-child(2) { background: #ffbd2e; }
.mock-window-bar span:nth-child(3) { background: #28c93f; }
.mock-window-body { padding: 0.6rem 0.85rem; }
.mock-row {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.mock-row:last-child { border-bottom: 0; }
.mock-row--header { font-weight: 600; color: var(--muted); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; padding-bottom: 0.4rem; }
.mock-row--header span:last-child { margin-left: auto; color: var(--primary-2); }
.mock-pill {
  width: 10px; height: 10px; border-radius: 50%;
  border: 2px solid var(--line-2);
  flex-shrink: 0;
}
.mock-pill--done { background: var(--primary-2); border-color: var(--primary-2); }
.mock-pill--active {
  background: var(--accent-2); border-color: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(163, 230, 53, 0.22);
}
.mock-meta { margin-left: auto; font-size: 0.78rem; color: var(--muted); }

/* mock phone (driver) */
.mock-phone {
  position: relative; z-index: 1;
  background: #0a1f1f;
  border: 6px solid #0a1f1f;
  border-radius: 1.5rem;
  width: 220px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}
.mock-phone-screen {
  background: var(--surface);
  border-radius: 1rem;
  overflow: hidden;
  font-size: 0.85rem;
}
.mock-phone-bar {
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 0.85rem;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
.mock-task {
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  color: var(--ink-2);
  font-size: 0.85rem;
}
.mock-task:last-child { border-bottom: 0; }
.mock-task--done { color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(79, 99, 99, 0.5); }
.mock-task--done span { color: var(--primary-2); text-decoration: none; font-weight: 700; }
.mock-task--current { background: #ecfbcf; font-weight: 600; color: var(--accent-ink); }
.mock-task--current span { color: var(--primary); }

.app-card-body { padding: 1.5rem 1.75rem 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; }
.app-card-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-2);
}
.app-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
}
.app-card-body > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.app-card-features {
  list-style: none;
  margin: 0.25rem 0 0.75rem;
  padding: 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.app-card-features li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.3rem;
}
.app-card-features li::before {
  content: ""; position: absolute; left: 0; top: 0.55rem;
  width: 0.4rem; height: 0.4rem; border-radius: 50%;
  background: var(--accent-2);
}
.app-card-link {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary);
  text-decoration: none;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  background: var(--primary-soft);
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.app-card-link:hover {
  background: var(--primary);
  color: var(--surface);
  transform: translateY(-1px);
}

/* ========== How it works ========== */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  counter-reset: step;
  text-align: left;
}
@media (min-width: 800px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; } }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  position: relative;
}
.step-num {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--accent);
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
  color: var(--ink);
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ========== CTA ========== */
.cta {
  background: linear-gradient(135deg, var(--primary) 0%, #11494a 50%, #185555 100%);
  color: #fff;
  padding: clamp(3.5rem, 7vw, 5.5rem) 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(199, 244, 108, 0.18), transparent 50%),
    radial-gradient(circle at 10% 100%, rgba(199, 244, 108, 0.1), transparent 50%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 50rem; margin: 0 auto; }
.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.85rem;
  color: #fff;
}
.cta p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 1.75rem;
  line-height: 1.6;
}
.cta-actions { display: flex; justify-content: center; gap: 0.75rem; flex-wrap: wrap; }

/* ========== Footer ========== */
.footer {
  padding: 2.25rem 1.25rem 2rem;
  background: var(--surface);
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.footer-text {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.footer-text a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px dashed var(--primary-2);
}
.footer-text a:hover { color: var(--ink); }
.footer-copyright {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  opacity: 0.85;
}

/* ========== Reveal ========== */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
