:root{
  --bg:#0b0f1a;
  --card:rgba(255,255,255,.06);
  --card-border:rgba(255,255,255,.10);
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --muted2:rgba(255,255,255,.55);
  --accent:#38BDF8;
  --accent2:#2563EB;
  --danger:#EF4444;
  --ok:#22C55E;
  --radius:24px;
}

*{box-sizing:border-box}

html,body{height:100%}
html{scroll-behavior:smooth}
html.lenis{scroll-behavior:auto}
body{
  margin:0;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 20% 10%, rgba(120,119,198,.22), transparent 60%),
    radial-gradient(900px 500px at 80% 30%, rgba(56,189,248,.18), transparent 55%),
    radial-gradient(900px 500px at 40% 90%, rgba(34,197,94,.12), transparent 60%),
    var(--bg);
  font-family:"Bricolage Grotesque", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  -webkit-text-size-adjust:100%;
  -webkit-tap-highlight-color:transparent;
  overscroll-behavior:none;
}

/* Mobile performance optimizations */
@media (max-width: 768px) {
  body {
    /* Simpler background on mobile for better performance */
    background: var(--bg);
  }
  
  /* Force hardware acceleration on mobile */
  .glass, .card, .hero-chart, .hero-brand {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: auto;
  }
  
  /* Disable expensive filters on mobile */
  .hero-chart svg {
    filter: none !important;
  }
  
  /* Reduce blur effects on mobile */
  .glass {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255,255,255,.08);
  }
}


@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  *{scroll-behavior:auto!important; transition:none!important; animation:none!important}
}

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

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0, 0, 0, 0);
  white-space:nowrap;
  border:0;
}

.container{max-width:1120px; margin:0 auto; padding:0 20px}

.bg-orbs{position:relative}

.glass{
  background:var(--card);
  border:1px solid var(--card-border);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:0 10px 30px rgba(0,0,0,.35);
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  color:var(--text);
  font-weight:600;
  cursor:pointer;
  transition:transform .08s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{background:rgba(255,255,255,.10); border-color:rgba(255,255,255,.20)}
.btn:active{transform:translateY(1px)}
.btn.primary{
  background:linear-gradient(135deg, rgba(56,189,248,.25), rgba(37,99,235,.25));
  border-color:rgba(56,189,248,.35);
}
.btn.primary:hover{border-color:rgba(56,189,248,.55)}
.btn.ghost{background:transparent}

.lift{
  transition: transform .25s cubic-bezier(.2,.9,.2,1), border-color .25s ease, background .25s ease;
}
.lift:hover{transform: translateY(-2px)}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--muted);
  font-weight:600;
  font-size:13px;
}

.nav{
  position:sticky;
  top:0;
  z-index:50;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.nav-inner{
  margin:14px auto 0;
  border-radius:18px;
}
.nav-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  letter-spacing:-.02em;
  flex-shrink:0;
}
.brand .wordmark{font-size:18px; white-space:nowrap}
.brand .wordmark .seller{color:rgba(255,255,255,.92)}
.brand .wordmark .scope{background:linear-gradient(135deg,#38BDF8,#2563EB);-webkit-background-clip:text;background-clip:text;color:transparent}
.brand .logo{
  width:32px;
  height:32px;
  min-width:32px;
  min-height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.brand .logo img{width:32px; height:32px; min-width:32px; min-height:32px; max-width:32px; max-height:32px; display:block; object-fit:contain}

.nav-links{display:flex; align-items:center; gap:10px}
.nav-links a{padding:10px 12px; border-radius:12px; color:rgba(255,255,255,.78); font-weight:650; font-size:14px}
.nav-links a:hover{background:rgba(255,255,255,.06); color:rgba(255,255,255,.92)}
.nav-links a.active{background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.14); color:rgba(255,255,255,.92)}

.nav-cta{display:flex; align-items:center; gap:10px}

.burger{display:none; width:42px; height:42px; border-radius:14px}
.burger svg{width:18px; height:18px}

.mobile-panel{
  display:none;
  padding:10px;
  border-top:1px solid rgba(255,255,255,.10);
}
.mobile-panel a{display:block; padding:12px 12px; border-radius:12px; color:rgba(255,255,255,.82); font-weight:650}
.mobile-panel a:hover{background:rgba(255,255,255,.06)}

 .mobile-panel[data-open="1"]{
   max-height:520px;
   opacity:1;
   transform:translateY(0);
   pointer-events:auto;
 }

.hero-cinematic{
  position:relative;
  min-height:100vh;
  min-height:100dvh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  padding:40px 20px 60px;
}

.hero-chart{
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  z-index:0;
  opacity:0.55;
  pointer-events:none;
  overflow:hidden;
}
.hero-chart-glow{
  position:absolute;
  bottom:15%;
  left:50%;
  -webkit-transform:translateX(-50%) translateZ(0);
  transform:translateX(-50%) translateZ(0);
  width:70%;
  height:220px;
  background:-webkit-radial-gradient(center, ellipse, rgba(56,189,248,.22), transparent 70%);
  background:radial-gradient(ellipse at center, rgba(56,189,248,.22), transparent 70%);
  pointer-events:none;
}
.hero-chart svg{
  position:absolute;
  top:-1px;
  left:-1px;
  width:calc(100% + 2px);
  height:calc(100% + 2px);
}

.hero-brand{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:24px;
  will-change:transform,opacity;
  -webkit-transform:translate3d(0,0,0);
  transform:translate3d(0,0,0);
  -webkit-backface-visibility:hidden;
  backface-visibility:hidden;
}
.hero-logo{
  width:72px;
  height:72px;
  min-width:72px;
  min-height:72px;
  max-width:72px;
  max-height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
  animation: heroLogoIn .9s cubic-bezier(.2,.9,.2,1) both;
}
.hero-logo img{
  width:72px;
  height:72px;
  min-width:72px;
  min-height:72px;
  max-width:72px;
  max-height:72px;
  display:block;
  object-fit:contain;
}
.hero-title{
  font-size:clamp(52px, 10vw, 96px);
  font-weight:850;
  letter-spacing:-.04em;
  line-height:.95;
  margin:0;
  animation: heroTitleIn 1s cubic-bezier(.2,.9,.2,1) .15s both;
}
.hero-title .seller{color:rgba(255,255,255,.95)}
.hero-title .scope{
  background: linear-gradient(135deg, rgba(56,189,248,1), rgba(37,99,235,1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-tagline{
  font-size:clamp(16px, 2.5vw, 22px);
  color:var(--muted);
  max-width:540px;
  line-height:1.5;
  margin:0;
  animation: heroTagIn 1s cubic-bezier(.2,.9,.2,1) .3s both;
}
.hero-ctas{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
  animation: heroCTAIn 1s cubic-bezier(.2,.9,.2,1) .45s both;
}
.hero-ctas .btn{padding:14px 22px; font-size:15px}

.hero-scroll{
  position:absolute;
  bottom:28px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  color:var(--muted2);
  font-size:12px;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
  animation: heroScrollIn 1.2s cubic-bezier(.2,.9,.2,1) .7s both;
  cursor:pointer;
}
.hero-scroll-icon{
  width:28px;
  height:44px;
  border-radius:14px;
  border:2px solid rgba(255,255,255,.18);
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding-top:8px;
}
.hero-scroll-dot{
  width:4px;
  height:8px;
  border-radius:4px;
  background:rgba(255,255,255,.45);
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes heroLogoIn{
  from{opacity:0; transform:scale(.8) translateY(20px)}
  to{opacity:1; transform:scale(1) translateY(0)}
}
@keyframes heroTitleIn{
  from{opacity:0; transform:translateY(30px)}
  to{opacity:1; transform:translateY(0)}
}
@keyframes heroTagIn{
  from{opacity:0; transform:translateY(20px)}
  to{opacity:1; transform:translateY(0)}
}
@keyframes heroCTAIn{
  from{opacity:0; transform:translateY(16px)}
  to{opacity:1; transform:translateY(0)}
}
@keyframes heroScrollIn{
  from{opacity:0}
  to{opacity:1}
}
@keyframes scrollDot{
  0%,100%{transform:translateY(0); opacity:.6}
  50%{transform:translateY(12px); opacity:1}
}

.title-accent{
  background: linear-gradient(135deg, rgba(56,189,248,.95), rgba(37,99,235,.95));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section{padding:34px 0}
.section-title{display:flex; align-items:flex-end; justify-content:space-between; gap:20px; margin-bottom:16px}
.section-title h2{margin:0; font-size:22px; letter-spacing:-.02em}
.section-title p{margin:0; color:var(--muted2); font-size:14px}

.reveal{
  opacity:0;
  -webkit-transform: translate3d(0, 14px, 0);
  transform: translate3d(0, 14px, 0);
  transition: opacity .6s cubic-bezier(.25,.1,.25,1), transform .6s cubic-bezier(.25,.1,.25,1);
  will-change: opacity, transform;
}
.reveal.is-visible{
  opacity:1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.reveal.delay-1{transition-delay:.08s}
.reveal.delay-2{transition-delay:.16s}
.reveal.delay-3{transition-delay:.24s}
.reveal.delay-4{transition-delay:.32s}

.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.grid-2{display:grid; grid-template-columns:repeat(2,1fr); gap:14px}
.card{padding:18px; border-radius:18px}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:14px; line-height:1.55}

.card.lift{border-color: rgba(255,255,255,.12)}
.card.lift:hover{border-color: rgba(56,189,248,.28); background: rgba(255,255,255,.065)}

.preview-wrap{display:grid; grid-template-columns: 1fr; gap:14px}
.preview-frame{
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.30);
}
.preview-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 12px;
  border-bottom:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}
.preview-dots{display:flex; gap:7px}
.preview-dots span{
  width:10px; height:10px;
  border-radius: 99px;
  background: rgba(255,255,255,.14);
}
.preview-dots span:nth-child(1){background: rgba(239,68,68,.35)}
.preview-dots span:nth-child(2){background: rgba(245,158,11,.35)}
.preview-dots span:nth-child(3){background: rgba(34,197,94,.35)}
.preview-cta{display:flex; gap:10px; align-items:center}
.preview-body{aspect-ratio: 16 / 10; width: 100%}
.preview-mobile{display:none}
.preview-body img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.preview-body iframe{
  width:100%;
  height:100%;
  border:0;
  background: rgba(0,0,0,.25);
}
.preview-fallback{
  display:none;
  padding:14px;
}
.preview-fallback strong{display:block; margin-bottom:6px}
.preview-fallback p{margin:0; color: var(--muted)}

.pricing{display:grid; grid-template-columns:repeat(3,1fr); gap:14px}
.price{padding:18px; border-radius:18px; display:flex; flex-direction:column}
.price .tier{display:flex; align-items:center; justify-content:space-between}
.price .tier strong{font-size:16px}
.price .amount{font-size:28px; font-weight:900; margin:14px 0 8px; letter-spacing:-.03em}
.price ul{margin:12px 0 0; padding-left:18px; color:var(--muted); line-height:1.7}

.price-cta{margin-top:auto; padding-top:14px}
.price-cta .btn{width:100%; min-height:44px}

.faq{display:grid; grid-template-columns:1fr; gap:10px}
.faq details{border-radius:18px; padding:14px 16px}
.faq summary{cursor:pointer; font-weight:750; color:rgba(255,255,255,.88)}
.faq summary::-webkit-details-marker{display:none}
.faq p{margin:10px 0 0; color:var(--muted)}

.footer{padding:28px 0 50px; margin-top:20px}
.footer-inner{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:16px 18px; border-radius:18px}
.footer small{color:var(--muted2)}
.footer-links{display:flex; gap:10px; flex-wrap:wrap}
.footer-links a{color:rgba(255,255,255,.72); font-weight:650; font-size:13px; padding:8px 10px; border-radius:12px}
.footer-links a:hover{background:rgba(255,255,255,.06); color:rgba(255,255,255,.92)}

.form-wrap{max-width:520px; margin:0 auto; padding:18px}
.form-card{padding:18px; border-radius:22px}
.field{display:flex; flex-direction:column; gap:8px; margin-top:12px}
.field label{color:rgba(255,255,255,.78); font-weight:650; font-size:13px}
.field input{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  outline:none;
  background:rgba(255,255,255,.05);
  color:rgba(255,255,255,.92);
}
.field input:focus{border-color:rgba(56,189,248,.45)}
.field input:-webkit-autofill,
.field input:-webkit-autofill:hover,
.field input:-webkit-autofill:focus,
.field input:-webkit-autofill:active{
  -webkit-box-shadow:0 0 0 9999px #131a2b inset !important;
  box-shadow:0 0 0 9999px #131a2b inset !important;
  -webkit-text-fill-color:rgba(255,255,255,.92) !important;
  transition:background-color 5000s ease-in-out 0s;
  border-color:rgba(255,255,255,.12) !important;
  caret-color:rgba(255,255,255,.92);
}
.field-password{position:relative; display:block}
.field-password input{width:100%; padding-right:44px; box-sizing:border-box}
.field-password .toggle-pw{
  position:absolute; right:10px; top:50%; transform:translateY(-50%);
  background:none; border:none; cursor:pointer; padding:6px;
  color:rgba(255,255,255,.4); display:flex; align-items:center;
}
.field-password .toggle-pw:hover{color:rgba(255,255,255,.7)}
.help{color:rgba(255,255,255,.60); font-size:13px; line-height:1.45}
.help a{color:rgba(255,255,255,.90); text-decoration:underline; text-underline-offset:3px}
.notice{margin-top:12px; padding:12px 12px; border-radius:14px; border:1px solid rgba(255,255,255,.10); background:rgba(255,255,255,.05); color:rgba(255,255,255,.85)}
.notice.ok{border-color:rgba(34,197,94,.35); background:rgba(34,197,94,.10)}
.notice.bad{border-color:rgba(239,68,68,.35); background:rgba(239,68,68,.10)}

.legal{max-width:880px; margin:0 auto}
.legal-card{padding:22px 24px; border-radius:22px}
.legal-card h1{margin:12px 0 8px; font-size:28px; letter-spacing:-.02em}
.legal-card h2{margin:20px 0 8px; font-size:17px; letter-spacing:-.01em}
.legal-card p{margin:0 0 12px; color:var(--muted); font-size:14px; line-height:1.7}
.legal-card ul{margin:0 0 12px 18px; color:var(--muted); line-height:1.7; font-size:14px}
.legal-card li{margin-bottom:6px}
.legal-card .meta{color:var(--muted2); font-size:13px; margin:4px 0 16px}
.legal-card a{color:rgba(255,255,255,.92); text-decoration:underline; text-underline-offset:3px}

.maintenance{max-width:720px; margin:0 auto; text-align:center}
.maintenance-card{padding:26px 28px; border-radius:24px}
.maintenance-card h1{margin:12px 0 10px; font-size:28px; letter-spacing:-.02em}
.maintenance-card p{margin:0; color:var(--muted); line-height:1.6}
.maintenance-actions{margin-top:18px; display:flex; justify-content:center; gap:12px; flex-wrap:wrap}
.maintenance-meta{margin-top:16px; color:var(--muted2); font-size:13px}

/* ===== Features Page Styles ===== */
.features-hero{
  padding:120px 20px 60px;
  text-align:center;
}
.features-hero-content h1{
  font-size:clamp(32px, 6vw, 56px);
  font-weight:850;
  letter-spacing:-.03em;
  line-height:1.1;
  margin:0 0 20px;
}
.features-hero-content p{
  font-size:clamp(16px, 2vw, 20px);
  color:var(--muted);
  max-width:600px;
  margin:0 auto;
  line-height:1.6;
}
.gradient-text{
  background:linear-gradient(135deg, #38BDF8, #2563EB);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.feature-section{
  padding:100px 0;
  position:relative;
}
.feature-section.alt{
  background:rgba(255,255,255,.02);
}
.feature-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.feature-row.reverse{
  direction:rtl;
}
.feature-row.reverse > *{
  direction:ltr;
}

/* Scroll-based scaling effect - JS controls transform/opacity */
.feature-visual .feature-mockup{
  transition:transform 0.15s ease-out, opacity 0.15s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
  will-change:transform, opacity;
}
.feature-content{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.feature-badge{
  display:inline-flex;
  padding:6px 14px;
  background:rgba(56,189,248,.15);
  color:#38BDF8;
  border-radius:20px;
  font-size:13px;
  font-weight:700;
  width:fit-content;
}
.feature-content h2{
  font-size:clamp(28px, 4vw, 40px);
  font-weight:850;
  letter-spacing:-.02em;
  margin:0;
  line-height:1.15;
}
.feature-content > p{
  font-size:16px;
  color:var(--muted);
  line-height:1.65;
  margin:0;
}
.feature-list{
  list-style:none;
  padding:0;
  margin:12px 0 0;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.feature-list li{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:15px;
  color:rgba(255,255,255,.85);
}
.feature-list svg{
  width:20px;
  height:20px;
  color:#22C55E;
  flex-shrink:0;
}

.feature-visual{
  display:flex;
  justify-content:center;
}
.feature-mockup{
  width:100%;
  max-width:480px;
  border-radius:20px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
}
.mockup-header{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 16px;
  background:rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.mockup-dots{
  display:flex;
  gap:6px;
}
.mockup-dots span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(255,255,255,.15);
}
.mockup-dots span:nth-child(1){background:rgba(239,68,68,.5)}
.mockup-dots span:nth-child(2){background:rgba(245,158,11,.5)}
.mockup-dots span:nth-child(3){background:rgba(34,197,94,.5)}
.mockup-title{
  font-size:13px;
  font-weight:600;
  color:var(--muted);
}
.mockup-body{
  padding:20px;
}

/* Dashboard mockup */
.mockup-stat-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-bottom:16px;
}
.mockup-stat{
  background:rgba(255,255,255,.04);
  border-radius:12px;
  padding:12px;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.stat-label{font-size:11px; color:var(--muted2)}
.stat-value{font-size:18px; font-weight:800; letter-spacing:-.02em}
.stat-change{font-size:11px; font-weight:600}
.stat-change.positive{color:#22C55E}
.stat-change.negative{color:#EF4444}
.mockup-chart{
  background:rgba(255,255,255,.03);
  border-radius:12px;
  padding:12px;
  height:80px;
}
.mockup-chart svg{width:100%; height:100%}

/* Insights breakdown mockup */
.mockup-breakdown{display:flex; flex-direction:column; gap:10px}
.breakdown-item{
  display:grid;
  grid-template-columns:80px 1fr 70px;
  align-items:center;
  gap:10px;
}
.breakdown-label{font-size:12px; color:var(--muted)}
.breakdown-bar{
  height:8px;
  background:rgba(255,255,255,.08);
  border-radius:4px;
  overflow:hidden;
}
.bar-fill{height:100%; border-radius:4px}
.bar-fill.revenue{background:linear-gradient(90deg, #38BDF8, #2563EB)}
.bar-fill.cogs{background:#EF4444}
.bar-fill.fees{background:#F59E0B}
.bar-fill.referral{background:#8B5CF6}
.bar-fill.profit{background:#22C55E}
.breakdown-value{font-size:12px; font-weight:600; text-align:right}
.breakdown-item.highlight{
  background:rgba(34,197,94,.1);
  margin:-4px -8px;
  padding:8px;
  border-radius:8px;
}
.breakdown-item.highlight .breakdown-value{color:#22C55E}

/* Table mockup */
.mockup-table{display:flex; flex-direction:column; gap:0}
.table-row{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 0.7fr;
  gap:8px;
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
  font-size:12px;
}
.table-row.header{
  font-weight:700;
  color:var(--muted);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.03em;
}
.table-row.dim{opacity:.5}
.product-name{
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.positive{color:#22C55E}
.negative{color:#EF4444}

/* Inventory grid mockup */
.inventory-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.inventory-item{
  background:rgba(255,255,255,.04);
  border-radius:12px;
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:4px;
  border-left:3px solid transparent;
}
.inventory-item.good{border-left-color:#22C55E}
.inventory-item.warning{border-left-color:#F59E0B}
.inventory-item.danger{border-left-color:#EF4444}
.inv-icon{font-size:20px}
.inv-name{font-size:12px; font-weight:600}
.inv-stock{font-size:11px; color:var(--muted)}
.inv-status{font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:.03em}
.inventory-item.good .inv-status{color:#22C55E}
.inventory-item.warning .inv-status{color:#F59E0B}
.inventory-item.danger .inv-status{color:#EF4444}

/* Replenish list mockup */
.replenish-list{display:flex; flex-direction:column; gap:10px}
.replenish-item{
  background:rgba(255,255,255,.04);
  border-radius:12px;
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.repl-product{font-size:13px; font-weight:700}
.repl-details{display:flex; gap:16px; font-size:11px; color:var(--muted)}
.repl-action{display:flex; justify-content:space-between; align-items:center}
.repl-qty{font-size:12px; color:var(--muted)}
.repl-badge{
  font-size:10px;
  font-weight:700;
  padding:4px 8px;
  border-radius:6px;
  text-transform:uppercase;
}
.repl-badge.urgent{background:rgba(239,68,68,.2); color:#EF4444}
.repl-badge.soon{background:rgba(245,158,11,.2); color:#F59E0B}
.repl-badge.ok{background:rgba(34,197,94,.2); color:#22C55E}

/* Returns mockup */
.returns-summary{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:16px;
  padding-bottom:16px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.returns-stat{display:flex; flex-direction:column; gap:4px}
.returns-label{font-size:11px; color:var(--muted)}
.returns-value{font-size:18px; font-weight:800}
.returns-amount{font-size:13px; color:#EF4444}
.returns-rate{text-align:center}
.returns-rate > span{font-size:11px; color:var(--muted); display:block; margin-bottom:8px}
.rate-circle{position:relative; width:60px; height:60px}
.rate-circle svg{width:100%; height:100%; transform:rotate(-90deg)}
.rate-value{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:800;
}
.returns-reasons{display:flex; flex-direction:column; gap:8px}
.reason-item{
  display:flex;
  justify-content:space-between;
  font-size:12px;
  padding:8px 12px;
  background:rgba(255,255,255,.04);
  border-radius:8px;
}
.reason-name{color:var(--muted)}
.reason-count{font-weight:700}

/* Price checker mockup */
.price-check-list{display:flex; flex-direction:column; gap:10px}
.price-item{
  background:rgba(255,255,255,.04);
  border-radius:12px;
  padding:14px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.price-product{font-size:13px; font-weight:700}
.price-comparison{display:flex; gap:16px; font-size:11px; color:var(--muted)}
.price-status{
  font-size:11px;
  font-weight:700;
  width:fit-content;
  padding:4px 10px;
  border-radius:6px;
}
.price-status.winning{background:rgba(34,197,94,.2); color:#22C55E}
.price-status.losing{background:rgba(239,68,68,.2); color:#EF4444}

/* Integration mockup */
.integration-status{
  display:flex;
  align-items:center;
  gap:14px;
  padding:16px;
  background:rgba(34,197,94,.1);
  border-radius:12px;
  margin-bottom:16px;
}
.integration-icon{
  width:40px;
  height:40px;
  background:rgba(34,197,94,.2);
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.integration-icon svg{width:24px; height:24px; color:#22C55E}
.integration-text{display:flex; flex-direction:column; gap:2px}
.int-title{font-size:14px; font-weight:700}
.int-status{font-size:12px; color:#22C55E}
.sync-info{display:flex; flex-direction:column; gap:8px}
.sync-item{
  display:flex;
  justify-content:space-between;
  font-size:12px;
  padding:8px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}
.sync-item span:first-child{color:var(--muted)}
.sync-item span:last-child{font-weight:600}

/* Features CTA */
.features-cta{padding:60px 0 80px}
.cta-content{
  text-align:center;
  padding:48px 32px;
  border-radius:24px;
}
.cta-content h2{
  font-size:clamp(24px, 4vw, 36px);
  font-weight:850;
  margin:0 0 12px;
}
.cta-content p{
  font-size:16px;
  color:var(--muted);
  max-width:500px;
  margin:0 auto 24px;
}
.cta-buttons{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}

/* Payments mockup styles */
.payments-mockup{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.payments-header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:12px;
  padding:12px 14px;
  background:rgba(255,255,255,.04);
  border-radius:12px;
  border:1px solid rgba(255,255,255,.06);
}
.payments-title{
  display:block;
  font-weight:700;
  font-size:13px;
  color:white;
}
.payments-sub{
  display:block;
  font-size:11px;
  color:var(--muted);
  margin-top:2px;
}
.payments-total{
  font-weight:800;
  font-size:18px;
  color:var(--accent2);
}
.payments-summary{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.payments-chip{
  padding:6px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:600;
  background:rgba(255,255,255,.06);
  color:white;
}
.payments-chip.paid{background:rgba(34,197,94,.2); color:#22C55E}
.payments-chip.pending{background:rgba(245,158,11,.2); color:#F59E0B}
.payments-chip.failed{background:rgba(239,68,68,.2); color:#EF4444}
.payments-list{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.payment-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  padding:10px 12px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.07);
  border-radius:12px;
}
.payment-info{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.payment-id{
  font-size:12px;
  font-weight:700;
  color:white;
}
.payment-range{
  font-size:11px;
  color:var(--muted);
}
.payment-meta{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:4px;
}
.payment-status{
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.04em;
  font-weight:700;
  padding:4px 8px;
  border-radius:999px;
  border:1px solid transparent;
}
.payment-status.paid{background:rgba(34,197,94,.2); color:#22C55E; border-color:rgba(34,197,94,.3)}
.payment-status.pending{background:rgba(245,158,11,.2); color:#F59E0B; border-color:rgba(245,158,11,.3)}
.payment-status.failed{background:rgba(239,68,68,.2); color:#EF4444; border-color:rgba(239,68,68,.3)}
.payment-amount{
  font-size:13px;
  font-weight:700;
  color:white;
}

@media (max-width: 980px){
  .grid-3{grid-template-columns:1fr}
  .pricing{grid-template-columns:1fr}
  .hero-logo{width:60px; height:60px; min-width:60px; min-height:60px; max-width:60px; max-height:60px}
  .hero-logo img{width:60px; height:60px; min-width:60px; min-height:60px; max-width:60px; max-height:60px}
  .feature-row{grid-template-columns:1fr; gap:40px}
  .feature-row.reverse{direction:ltr}
  .feature-visual{order:-1}
  .mockup-stat-row{grid-template-columns:1fr}
}
@media (max-width: 760px){
  .nav-links{display:none}
  .nav-cta{display:none}
  .burger{display:inline-flex}
  .mobile-panel{display:block}
  .hero-cinematic{padding:60px 20px 80px}
  .hero-logo{width:52px; height:52px; min-width:52px; min-height:52px; max-width:52px; max-height:52px}
  .hero-logo img{width:52px; height:52px; min-width:52px; min-height:52px; max-width:52px; max-height:52px}
  .hero-title{font-size:clamp(36px, 10vw, 56px); line-height:1.05}
  .hero-tagline{font-size:15px; max-width:100%}
  .hero-ctas{flex-direction:column; width:100%; max-width:280px}
  .hero-ctas .btn{width:100%}
  .hero-scroll{bottom:20px}
  .hero-chart{opacity:.35}
  /* Fix nav logo being squished on mobile */
  .brand{flex-shrink:0}
  .brand .logo{width:28px; height:28px; min-width:28px; min-height:28px; flex-shrink:0}
  .brand .logo img{width:28px; height:28px; min-width:28px; min-height:28px}
  .brand .wordmark{font-size:16px; white-space:nowrap}
  .section-title{flex-direction:column; align-items:center; text-align:center}
  .section-title > div{width:100%}
  .feature-row{gap:28px}
  .feature-content{text-align:center}
  .feature-badge{align-self:center}
  .feature-list{align-items:center}
  .feature-list li{justify-content:center; text-align:left}
  .feature-mockup{padding:16px}
  .payments-header{flex-direction:column; align-items:flex-start}
  .payment-row{flex-direction:column; align-items:flex-start}
  .payment-meta{align-items:flex-start}
  /* Mobile demo preview improvements */
  .preview-body{height:clamp(420px, 70vh, 650px); max-height:80vh; aspect-ratio:auto}
  .preview-top{flex-wrap:wrap; gap:8px; padding:8px 10px}
  .preview-cta{width:100%; justify-content:center; gap:8px}
  .preview-cta .btn{font-size:13px; padding:10px 14px; flex:1; min-width:0}
  .preview-dots{display:none}
  .preview-frame{border-radius:16px}
  .section{padding:24px 0}
  .section-title{flex-direction:column; align-items:flex-start; gap:8px; text-align:center}
  .section-title h2{font-size:20px}
  .section-title p{font-size:13px}
  .grid-2{grid-template-columns:1fr}
  .card{padding:14px}
  .card h3{font-size:15px}
  .card p{font-size:13px}
  .container{padding:0 14px}
  /* Footer mobile */
  .footer-inner{flex-direction:column; text-align:center; gap:12px}
  .footer-links{justify-content:center}
  /* Form mobile */
  .form-wrap{padding:12px}
  .form-card{padding:14px}
  .form-card h1{font-size:24px}
  .field input{padding:14px 12px; font-size:16px}
}

@media (max-width: 520px){
  .preview-body{height:clamp(520px, 82vh, 780px); max-height:88vh}
  .preview-cta .btn{font-size:12px; padding:10px 12px}
}
