:root{
  --brand:#7dffb5;
  --bg:radial-gradient(1200px 800px at 10% -10%, #102116 0%, #0e1013 55%);
  --text:#e6fbef;
  --muted:#bde7cf;
  --card:rgba(17,22,20,.55);
  --border:rgba(125,255,181,.18);
  --accent:linear-gradient(135deg, rgba(125,255,181,.12), rgba(76,255,128,.06));
  --shadow:0 18px 60px rgba(76,255,128,.18);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:'Montserrat','Segoe UI',Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
}
a{color:inherit;text-decoration:none}
.container{max-width:1200px;margin:0 auto;padding:0 16px}

/* Global image safeguard */
img {max-width:100%;height:auto;display:block}

/* Nav */
.nav-wrap{
  position:sticky;top:0;z-index:1000;
  background:rgba(12,14,16,.6);
  backdrop-filter:saturate(140%) blur(8px);
  border-bottom:1px solid var(--border)
}
.nav{height:68px;display:flex;align-items:center;justify-content:space-between}
.brand img{height:64px;width:auto}
.nav-links{display:flex;gap:28px}
.nav-links a{padding:6px 0;font-weight:600;color:var(--muted)}
.nav-links a.active,.nav-links a:hover{color:var(--brand)}

/* Home hero */
.hero{
  position:relative;overflow:hidden;text-align:center;
  padding:64px 0 40px;background:var(--accent)
}
.hero .orb{
  position:absolute;inset:auto -15% -40% -15%;
  height:65vh;pointer-events:none;
  filter:blur(80px) saturate(140%);
  background:radial-gradient(50% 50% at 50% 50%, rgba(76,255,128,.18) 0%, rgba(76,255,128,0) 70%)
}
.hero-logo{
  width:120px;height:120px;margin:0 auto 18px;
  border-radius:28px;background:#0f1112;
  display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow);border:1px solid var(--border)
}
.hero-logo img{width:100px;height:100px;object-fit:contain}
.title{font-size:clamp(28px,6vw,48px);margin:10px 0 8px;color:var(--brand);letter-spacing:1px}
.subtitle{max-width:680px;margin:0 auto;opacity:.9;line-height:1.6}

/* Sections */
.section{padding:48px 0 28px}
.section h2{font-size:clamp(22px,3vw,32px);color:var(--brand);margin:0 0 12px}

/* Store-like grid */
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:26px;margin-top:14px}
.card{
  position:relative;background:var(--card);
  border:1px solid var(--border);border-radius:22px;
  padding:18px 18px 20px;box-shadow:var(--shadow);
  transition:transform .18s ease, box-shadow .2s ease, border-color .18s ease
}
.card:hover{transform:translateY(-6px);box-shadow:0 18px 40px rgba(0,0,0,.28);border-color:var(--brand)}
.card .row{display:flex;gap:16px}

/* App icon containers */
.app-icon,.icon{
  width:64px;height:64px;border-radius:14px;background:#0c1210;
  display:flex;align-items:center;justify-content:center;
  border:1px solid var(--border);overflow:hidden
}
.app-icon img{width:40px;height:40px;object-fit:contain}
.icon{width:92px;height:92px;border-radius:22px;margin:0 auto 10px}
.icon img{width:64px;height:64px;object-fit:contain}

.app-title{margin:2px 0 2px;font-weight:700;letter-spacing:.3px}
.app-sub{margin:0;color:var(--muted);font-size:.95rem}
.shots{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin-top:14px}
.shot{height:110px;border-radius:12px;border:1px solid var(--border);background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.06))}
.card-link{position:absolute;inset:0;z-index:5}

/* App pages */
.app-hero{padding:60px 0 40px;text-align:center;background:var(--accent);border-bottom:1px solid var(--border)}
.pill{display:inline-block;margin-top:10px;padding:6px 12px;border:1px solid var(--border);border-radius:999px;color:var(--muted)}
.back-row{margin-top:18px}
.back{display:inline-block;padding:8px 12px;border:1px solid var(--border);border-radius:12px;color:var(--muted)}
.feature-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:16px}
.feature{background:var(--card);border:1px solid var(--border);border-radius:16px;padding:16px}
.feature h4{margin:0 0 6px;color:var(--brand)}
.app-screens{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:14px}
.app-screens .shot img{width:100%;height:100%;object-fit:cover;display:block}

/* Policy page */
.policy-body{background:var(--bg);color:var(--text)}
.policy-wrap{max-width:800px;margin:40px auto;padding:0 16px;font:16px/1.6 'Montserrat','Segoe UI',Arial,sans-serif}
.policy-wrap .muted{opacity:.7}

/* Footer */
footer{margin-top:32px;border-top:1px solid var(--border);padding:26px 0 22px;text-align:center;color:var(--muted)}

/* Motion */
.reveal{opacity:0;transform:translateY(10px);transition:opacity .5s ease, transform .6s ease}
.reveal.in{opacity:1;transform:translateY(0)}

@media (max-width:760px){
  .nav-links{display:none}
  .brand img{height:52px}
  .shots{grid-template-columns:repeat(2,1fr)}
}
