:root {
  --bg:      #f7f9fc;
  --white:   #ffffff;
  --navy:    #0f2342;
  --blue:    #1a6bbd;
  --sky:     #2d9cdb;
  --orange:  #f47c20;
  --text:    #1a2a3a;
  --muted:   #6b7e96;
  --border:  #e3eaf3;
  --light:   #eef4fb;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--bg); color: var(--text); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(247,249,252,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow .2s;
}
nav.shadow { box-shadow: 0 2px 20px rgba(0,0,0,.07); }
.nav-logo {
  font-size: 22px; font-weight: 800; color: var(--navy);
  text-decoration: none; letter-spacing: -.4px;
}
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  text-decoration: none; transition: color .15s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--orange) !important; color: #fff !important;
  padding: 8px 20px; border-radius: 8px; font-weight: 600 !important;
  transition: opacity .15s !important;
}
.nav-cta:hover { opacity: .88; }

/* ── HERO ── */
.hero {
  padding-top: 112px; padding-bottom: 80px;
  padding-left: 40px; padding-right: 40px;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--light); border: 1px solid #c8dff5;
  border-radius: 20px; padding: 5px 14px 5px 8px;
  margin-bottom: 24px;
}
.hero-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero-tag-text { font-size: 12px; font-weight: 600; color: var(--blue); letter-spacing: .3px; }

h1 {
  font-size: clamp(38px, 4.5vw, 58px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -.8px;
  color: var(--navy);
  margin-bottom: 20px;
}
h1 em { color: var(--orange); font-style: normal; }
.hero-sub {
  font-size: 17px; font-weight: 400; color: var(--muted);
  line-height: 1.7; max-width: 440px; margin-bottom: 36px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }
.hero-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  background: var(--orange); color: #fff; text-decoration: none;
  padding: 13px 28px; border-radius: 10px; font-size: 15px; font-weight: 700;
  transition: opacity .15s, transform .15s; display: inline-block;
}
.btn-primary:hover { opacity: .9; transform: translateY(-1px); }
.btn-outline {
  background: var(--white); color: var(--text); text-decoration: none;
  padding: 13px 28px; border-radius: 10px; font-size: 15px; font-weight: 600;
  border: 1.5px solid var(--border); transition: border-color .15s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--sky); color: var(--sky); }

.hero-metrics {
  display: flex; gap: 32px;
  padding-top: 32px; border-top: 1px solid var(--border);
}
.metric-val { font-size: 28px; font-weight: 800; color: var(--navy); line-height: 1; }
.metric-val span { color: var(--orange); }
.metric-lbl { font-size: 12px; color: var(--muted); font-weight: 500; margin-top: 3px; }

/* ── DASHBOARD CARD ── */
.hero-right { position: relative; }
.dash-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(15,35,66,.10), 0 2px 8px rgba(15,35,66,.04);
  overflow: hidden;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)}
}
.dash-topbar {
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  background: var(--bg);
  display: flex; align-items: center; gap: 8px;
}
.win-btn { width: 11px; height: 11px; border-radius: 50%; }
.win-r { background: #ff5f57; }
.win-y { background: #ffbd2e; }
.win-g { background: #28c840; }
.win-url {
  flex: 1; background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; padding: 4px 12px; margin: 0 12px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--muted);
}
.dash-body { padding: 18px; }

.kpi-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 14px; }
.kpi-box {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 14px;
}
.kpi-n { font-size: 24px; font-weight: 800; color: var(--navy); line-height: 1; }
.kpi-n.blue  { color: var(--sky); }
.kpi-n.orng  { color: var(--orange); }
.kpi-n.grn   { color: #16a34a; }
.kpi-lbl2 { font-size: 10px; font-weight: 600; color: var(--muted); margin-top: 2px; }
.kpi-up { font-size: 10px; color: #16a34a; font-family:'JetBrains Mono',monospace; margin-top:3px; }

.mini-chart { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 14px; margin-bottom: 12px; }
.mini-chart-title { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 10px; }
.bar-row { display: flex; align-items: flex-end; gap: 5px; height: 52px; }
.b { flex: 1; border-radius: 3px 3px 0 0; animation: grow .9s ease both; }
@keyframes grow { from{height:0!important} }

.feed-list { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 12px; }
.feed-item { display: flex; align-items: center; gap: 8px; padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 11px; }
.feed-item:last-child { border-bottom: none; padding-bottom: 0; }
.badge-in  { background: #dcfce7; color: #15803d; font-family:'JetBrains Mono',monospace; font-size:9px; padding:2px 6px; border-radius:4px; font-weight:600; flex-shrink:0; }
.badge-out { background: #fff7ed; color: var(--orange); font-family:'JetBrains Mono',monospace; font-size:9px; padding:2px 6px; border-radius:4px; font-weight:600; flex-shrink:0; }
.f-ctn { font-family:'JetBrains Mono',monospace; font-size:10px; color:var(--blue); flex-shrink:0; font-weight:500; }
.f-info { flex:1; color:var(--muted); font-size:11px; }
.f-time { font-family:'JetBrains Mono',monospace; font-size:9px; color:#b0bec8; flex-shrink:0; }

/* Floating badges */
.float-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08);
  font-size: 12px; font-weight: 600; color: var(--text);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}
.float-badge .fb-icon { font-size: 18px; }
.float-badge .fb-label { font-size: 10px; font-weight: 500; color: var(--muted); display: block; }
.fb1 { bottom: 30px; left: -30px; animation: float2 4s 1s ease-in-out infinite; }
.fb2 { top: 30px; right: -24px; animation: float2 4.5s .3s ease-in-out infinite; }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }

/* ── LOGOS STRIP ── */
.logos-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 40px;
}
.logos-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 56px; flex-wrap: wrap; }
.logo-label { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; margin-right: 8px; }
.logo-item { font-size: 16px; font-weight: 800; color: #c5d0de; letter-spacing: 1px; transition: color .2s; }
.logo-item:hover { color: var(--muted); }

/* ── SECTION COMMONS ── */
.section { padding: 96px 40px; max-width: 1200px; margin: 0 auto; }
.sec-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--orange); margin-bottom: 12px; }
.sec-title { font-size: clamp(32px, 3.5vw, 48px); font-weight: 800; color: var(--navy); letter-spacing: -.5px; line-height: 1.1; margin-bottom: 14px; }
.sec-sub { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 520px; margin-bottom: 52px; }

/* ── MODULES ── */
.mods-bg { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.mods-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.mod-card {
  background: var(--white); padding: 28px 24px;
  transition: background .15s; cursor: default;
}
.mod-card:hover { background: var(--bg); }
.mod-icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 14px;
}
.mod-name { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.mod-desc { font-size: 13px; color: var(--muted); line-height: 1.55; }
.mod-pill {
  display: inline-block; margin-top: 12px;
  font-size: 10px; font-weight: 600; font-family: 'JetBrains Mono', monospace;
  color: var(--muted); background: var(--bg);
  border: 1px solid var(--border); border-radius: 4px;
  padding: 2px 8px; letter-spacing: .5px;
}

/* ── HOW IT WORKS ── */
.how-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.step-list { display: flex; flex-direction: column; gap: 0; }
.step-item {
  display: flex; gap: 20px;
  padding: 28px 0; border-bottom: 1px solid var(--border);
}
.step-item:first-child { border-top: 1px solid var(--border); }
.step-num-wrap {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--light); border: 1px solid #c8dff5;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: var(--blue);
  flex-shrink: 0; margin-top: 2px;
}
.step-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.step-text  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* Yard card */
.yard-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.yard-card-title {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--muted); margin-bottom: 18px;
  display: flex; align-items: center; gap: 8px;
}
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: blink 2s infinite; }
.yard-row { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.row-lbl { font-family:'JetBrains Mono',monospace; font-size:10px; color:var(--muted); width:20px; flex-shrink:0; }
.slots-wrap { display: flex; gap: 4px; }
.slot { width: 26px; height: 18px; border-radius: 3px; border: 1.5px solid; cursor: default; }
.slot.full  { background: #dbeafe; border-color: #93c5fd; }
.slot.empty { background: #dcfce7; border-color: #86efac; }
.slot.rep   { background: #fff7ed; border-color: #fdba74; }
.slot.free  { background: var(--bg); border-color: var(--border); }
.yard-legend { display: flex; gap: 16px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }
.leg-item { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--muted); }
.leg-sq { width: 10px; height: 10px; border-radius: 2px; border: 1.5px solid; }

/* ── PRICING ── */
.price-bg { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.plan-card {
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 36px 30px;
  transition: transform .2s, box-shadow .2s;
}
.plan-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.07); }
.plan-card.popular {
  background: var(--navy); border-color: var(--navy);
  color: #e8f2fc;
}
.plan-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  background: var(--orange); color: #fff;
  padding: 3px 10px; border-radius: 4px; margin-bottom: 20px;
}
.plan-name2 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.plan-card.popular .plan-name2 { color: #fff; }
.plan-desc2 { font-size: 13px; color: var(--muted); margin-bottom: 24px; line-height: 1.5; }
.plan-card.popular .plan-desc2 { color: #7fadd4; }
.plan-price2 { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price-big { font-size: 48px; font-weight: 800; color: var(--navy); line-height: 1; }
.plan-card.popular .price-big { color: #fff; }
.price-unit { font-size: 14px; color: var(--muted); font-weight: 500; }
.plan-divid { height: 1px; background: var(--border); margin: 24px 0; }
.plan-card.popular .plan-divid { background: rgba(255,255,255,.1); }
.plan-feat { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.plan-feat li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text); }
.plan-card.popular .plan-feat li { color: #c5ddf5; }
.plan-feat li.off { color: var(--muted) !important; }
.feat-chk { flex-shrink: 0; margin-top: 1px; }
.plan-act {
  display: block; text-align: center; margin-top: 28px;
  padding: 12px; border-radius: 10px; font-size: 14px; font-weight: 700;
  text-decoration: none; transition: all .15s;
}
.plan-act-outline { border: 1.5px solid var(--border); color: var(--text); }
.plan-act-outline:hover { border-color: var(--sky); color: var(--sky); }
.plan-act-fill { background: var(--orange); color: #fff; }
.plan-act-fill:hover { opacity: .9; }
.plan-act-ghost { border: 1.5px solid rgba(255,255,255,.2); color: rgba(255,255,255,.8); }
.plan-act-ghost:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* ── CTA ── */
.cta-band {
  background: var(--navy); padding: 80px 40px; text-align: center;
}
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-title { font-size: clamp(32px, 4vw, 52px); font-weight: 800; color: #fff; letter-spacing: -.5px; line-height: 1.15; margin-bottom: 16px; }
.cta-title span { color: var(--orange); }
.cta-sub { font-size: 16px; color: #7fadd4; line-height: 1.7; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-light { background: #fff; color: var(--navy); padding: 13px 28px; border-radius: 10px; font-size: 15px; font-weight: 700; text-decoration: none; transition: opacity .15s; }
.btn-light:hover { opacity: .9; }
.btn-ghost2 { border: 1.5px solid rgba(255,255,255,.25); color: rgba(255,255,255,.8); padding: 13px 28px; border-radius: 10px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all .15s; }
.btn-ghost2:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* ── FOOTER ── */
footer { background: var(--white); border-top: 1px solid var(--border); padding: 56px 40px 28px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo2 { font-size: 22px; font-weight: 800; color: var(--navy); margin-bottom: 10px; display: block; }
.footer-logo2 span { color: var(--orange); }
.footer-tagline2 { font-size: 13px; color: var(--muted); line-height: 1.65; max-width: 260px; margin-bottom: 20px; }
.footer-loc { font-family:'JetBrains Mono',monospace; font-size: 11px; color: var(--muted); }
.footer-col-lbl { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text); margin-bottom: 14px; }
.footer-lnks { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-lnks a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color .15s; }
.footer-lnks a:hover { color: var(--text); }
.footer-bot { padding-top: 24px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.footer-copy2 { font-family:'JetBrains Mono',monospace; font-size: 11px; color: var(--muted); }
.footer-inline { display: flex; gap: 20px; }
.footer-inline a { font-family:'JetBrains Mono',monospace; font-size: 11px; color: var(--muted); text-decoration: none; transition: color .15s; }
.footer-inline a:hover { color: var(--text); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.on { opacity: 1; transform: none; }
