/* ===========================================
   SPINBOX — CSS VARIABLES & RESET
   =========================================== */
:root {
  --teal-dark: #041e1e;
  --teal-mid: #0a3d3d;
  --teal-base: #0d4a4a;
  --teal-light: #1a6b6b;
  --teal-muted: #3a7a7a;
  --amber: #f5a623;
  --amber-dark: #c8860e;
  --cream: #faf9f6;
  --cream-warm: #f2efe8;
  --gray-100: #e8e4de;
  --gray-300: #b0a89e;
  --gray-500: #7a6e66;
  --text-primary: #041e1e;
  --text-secondary: #4a3f38;
  --text-muted: #7a6e66;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===========================================
   NAVIGATION
   =========================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(4, 30, 30, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 166, 35, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--cream);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  color: rgba(250, 249, 246, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--amber);
}

/* ===========================================
   HERO
   =========================================== */
.hero {
  min-height: 100vh;
  background: var(--teal-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 40px 80px;
}

.hero-bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245, 166, 35, 0.06);
}

.hero-ring-1 {
  width: 600px;
  height: 600px;
  right: -100px;
  top: -100px;
}

.hero-ring-2 {
  width: 900px;
  height: 900px;
  right: -250px;
  top: -250px;
}

.hero-ring-3 {
  width: 1200px;
  height: 1200px;
  right: -400px;
  top: -400px;
  border-color: rgba(245, 166, 35, 0.03);
}

.hero-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(245, 166, 35, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at 80% 50%, black 30%, transparent 70%);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(250, 249, 246, 0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 28px;
  width: fit-content;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-bottom: 24px;
}

.hero-accent {
  color: var(--amber);
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(250, 249, 246, 0.65);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 0;
}

/* ===========================================
   HERO VISUAL — PHONE MOCKUP
   =========================================== */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.phone-mockup {
  background: #0a1e1e;
  border: 1.5px solid rgba(245, 166, 35, 0.2);
  border-radius: 24px;
  padding: 4px;
  max-width: 260px;
  align-self: flex-end;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,166,35,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
}

.phone-screen {
  background: var(--teal-base);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.screen-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.screen-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--amber);
}

.screen-status {
  font-size: 0.65rem;
  font-weight: 500;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  padding: 2px 8px;
  border-radius: 100px;
}

.order-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-id {
  font-size: 0.65rem;
  color: rgba(250,249,246,0.4);
  font-weight: 500;
}

.order-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
}

.order-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-type {
  font-size: 0.7rem;
  color: rgba(250,249,246,0.5);
  background: rgba(245,166,35,0.1);
  padding: 3px 8px;
  border-radius: 100px;
  color: var(--amber);
}

.order-time {
  font-size: 0.7rem;
  color: rgba(250,249,246,0.5);
}

.order-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
}

.order-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber), #f5970a);
  border-radius: 100px;
}

.order-steps {
  display: flex;
  gap: 0;
  justify-content: space-between;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid rgba(250,249,246,0.2);
  background: transparent;
}

.step.done .step-dot {
  background: var(--amber);
  border-color: var(--amber);
}

.step.active .step-dot {
  background: var(--amber);
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.2);
}

.step span {
  font-size: 0.6rem;
  color: rgba(250,249,246,0.3);
}

.step.done span, .step.active span {
  color: rgba(250,249,246,0.6);
}

.screen-footer {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(250,249,246,0.3);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 8px;
}

/* ===========================================
   HERO VISUAL — DASHBOARD MOCKUP
   =========================================== */
.dashboard-mockup {
  background: #061616;
  border: 1.5px solid rgba(245, 166, 35, 0.15);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(245,166,35,0.08);
  padding: 0;
}

.dash-header {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.2);
}

.dash-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(250,249,246,0.5);
  letter-spacing: 0.04em;
}

.dash-stats {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dash-stat {
  flex: 1;
  padding: 12px 14px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.dash-stat:last-child {
  border-right: none;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.6rem;
  color: rgba(250,249,246,0.35);
  margin-top: 2px;
}

.dash-map {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dash-locations {
  padding: 0;
}

.loc-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.68rem;
}

.loc-row-header {
  color: rgba(250,249,246,0.3);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.loc-row-header span:last-child,
.loc-row-header span:nth-child(3) {
  margin-left: auto;
}

.loc-row span:nth-child(2) {
  color: rgba(250,249,246,0.65);
  flex: 1;
}

.loc-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.loc-dot-green {
  background: #4ade80;
  box-shadow: 0 0 0 2px rgba(74,222,128,0.15);
}

.loc-dot-amber {
  background: var(--amber);
  box-shadow: 0 0 0 2px rgba(245,166,35,0.15);
}

.loc-val {
  color: rgba(250,249,246,0.5);
  font-weight: 500;
  width: 28px;
  text-align: right;
}

.loc-rev {
  color: var(--amber);
  font-weight: 600;
  width: 44px;
  text-align: right;
}

/* ===========================================
   FEATURES
   =========================================== */
.features {
  background: var(--cream-warm);
  padding: 120px 40px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 16px;
}

.section-label.light {
  color: rgba(250,249,246,0.4);
}

.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 64px;
  max-width: 640px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--gray-100);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  background: var(--cream);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s;
}

.feature-card:hover {
  background: #fff;
}

.feature-card-wide {
  grid-column: span 2;
}

.feature-card-highlight {
  background: var(--teal-base);
  color: var(--cream);
}

.feature-card-highlight h3,
.feature-card-highlight p {
  color: var(--cream);
}

.feature-card-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card-highlight .feature-icon svg rect,
.feature-card-highlight .feature-icon svg path,
.feature-card-highlight .feature-icon svg line,
.feature-card-highlight .feature-icon svg circle {
  stroke: var(--amber);
}

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* ===========================================
   HOW IT WORKS
   =========================================== */
.how-it-works {
  background: var(--cream);
  padding: 120px 40px;
}

.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
}

.step-item {
  display: flex;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
}

.step-item:last-child {
  border-bottom: none;
}

.step-item::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 80px;
  bottom: 0;
  width: 1px;
  background: var(--gray-100);
}

.step-item:last-child::before {
  display: none;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gray-100);
  letter-spacing: -0.04em;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
}

.step-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 4px;
}

.step-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.step-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ===========================================
   OPERATORS SECTION
   =========================================== */
.operators {
  background: var(--teal-dark);
  padding: 120px 40px;
}

.operators-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.operators-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 20px;
}

.operators-text p {
  color: rgba(250, 249, 246, 0.55);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.operators-highlight {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--amber);
}

.operators-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 32px;
}

.operators-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(250, 249, 246, 0.7);
  font-weight: 500;
}

.operators-proof {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.proof-card {
  padding: 28px 32px;
  border: 1px solid rgba(245, 166, 35, 0.12);
  border-radius: 12px;
  background: rgba(245, 166, 35, 0.03);
}

.proof-stat {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.proof-desc {
  font-size: 0.85rem;
  color: rgba(250, 249, 246, 0.45);
  line-height: 1.55;
}

/* ===========================================
   CLOSING
   =========================================== */
.closing {
  background: var(--cream-warm);
  padding: 100px 40px;
}

.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.closing-sub-secondary {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===========================================
   FOOTER
   =========================================== */
.site-footer {
  background: var(--teal-dark);
  padding: 48px 40px;
  border-top: 1px solid rgba(245, 166, 35, 0.08);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.footer-name {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(250, 249, 246, 0.4);
}

.footer-note {
  font-size: 0.75rem;
  color: rgba(250, 249, 246, 0.2);
}

/* ===========================================
   RESPONSIVE
   =========================================== */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card-wide {
    grid-column: span 1;
  }

  .operators-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 100px 24px 60px;
  }

  .features, .how-it-works, .operators, .closing {
    padding: 80px 24px;
  }

  .nav-links {
    display: none;
  }

  .section-headline {
    margin-bottom: 40px;
  }

  .steps-timeline {
    max-width: 100%;
  }
}