/* ANMP Commerce LLC — shared styles */
:root {
  --bg: #0a0b0f;
  --bg-soft: #12141c;
  --card: #161925;
  --card-hover: #1c2030;
  --border: #262a3a;
  --text: #e8eaf2;
  --text-dim: #a2a7ba;
  --text-faint: #6b7185;
  --brand: #6d6bff;
  --brand-2: #a06bff;
  --accent: #34e0c4;
  --radius: 16px;
  --maxw: 1140px;
  --grad: linear-gradient(135deg, #6d6bff 0%, #a06bff 55%, #34e0c4 130%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--text-dim); }
.faint { color: var(--text-faint); }

/* Nav */
header.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 11, 15, 0.72);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em; }
.logo .mark {
  width: 30px; height: 30px; border-radius: 8px; background: var(--grad);
  display: grid; place-items: center; font-size: 0.8rem; font-weight: 900; color: #0a0b0f;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--text-dim); font-size: 0.92rem; font-weight: 500; transition: color .15s; }
.nav-links a:hover { color: var(--text); }
.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  padding: 11px 20px; border-radius: 10px; font-weight: 700; font-size: 0.9rem;
  background: var(--grad); color: #0a0b0f; border: none; cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 30px -10px rgba(109,107,255,.6); }
.btn.ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn.ghost:hover { border-color: var(--brand); box-shadow: none; }

@media (max-width: 720px) { .nav-links a:not(.btn) { display: none; } }

/* Hero */
.hero { position: relative; overflow: hidden; padding: 96px 0 72px; text-align: center; }
.hero::before {
  content: ''; position: absolute; inset: -40% 10% auto; height: 520px;
  background: radial-gradient(50% 60% at 50% 0%, rgba(109,107,255,.28), transparent 70%);
  pointer-events: none;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px;
  background: rgba(109,107,255,.1); border: 1px solid rgba(109,107,255,.3);
  color: var(--brand-2); font-size: 0.8rem; font-weight: 600; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5.2vw, 3.7rem); line-height: 1.08; letter-spacing: -0.03em;
  margin: 0 auto 20px; max-width: 900px; font-weight: 800;
}
.hero h1 .g { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--text-dim); max-width: 640px; margin: 0 auto 34px; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Stats */
.stats { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; margin-top: 64px; }
.stat .n { font-size: 2rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .l { font-size: 0.85rem; color: var(--text-faint); }

/* Sections */
section { padding: 84px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head .kicker { color: var(--accent); font-weight: 700; font-size: 0.85rem; letter-spacing: .08em; text-transform: uppercase; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); letter-spacing: -0.02em; margin: 12px 0 14px; font-weight: 800; }
.section-head p { color: var(--text-dim); font-size: 1.05rem; margin: 0; }

/* Product grid */
.products { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 22px; }
.product {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; display: flex; flex-direction: column; transition: border-color .18s, transform .18s, background .18s;
}
.product:hover { border-color: rgba(109,107,255,.5); transform: translateY(-3px); background: var(--card-hover); }
.product .p-ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 18px; background: rgba(109,107,255,.12); border: 1px solid rgba(109,107,255,.25); }
.product h3 { margin: 0 0 6px; font-size: 1.22rem; font-weight: 800; letter-spacing: -0.01em; }
.product .cat { font-size: 0.78rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }
.product p { color: var(--text-dim); font-size: 0.95rem; margin: 0 0 20px; flex: 1; }
.product .p-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--border); }
.product .price { font-weight: 800; font-size: 1.05rem; }
.product .price span { font-weight: 500; color: var(--text-faint); font-size: 0.82rem; }
.product .p-link { color: var(--brand-2); font-weight: 700; font-size: 0.88rem; display: inline-flex; gap: 6px; align-items: center; }
.product .p-link:hover { color: var(--text); }

/* Feature / how it works */
.feature-bg { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.step { position: relative; padding-left: 4px; }
.step .num { width: 40px; height: 40px; border-radius: 10px; background: rgba(52,224,196,.1); border: 1px solid rgba(52,224,196,.3); color: var(--accent); font-weight: 800; display: grid; place-items: center; margin-bottom: 16px; }
.step h4 { margin: 0 0 8px; font-size: 1.1rem; font-weight: 700; }
.step p { margin: 0; color: var(--text-dim); font-size: 0.93rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }
.about-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; }
.about-card .row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.about-card .row:last-child { border-bottom: none; }
.about-card .row span:first-child { color: var(--text-faint); }
.about-card .row span:last-child { font-weight: 600; }

/* Contact / CTA */
.cta-band { text-align: center; }
.cta-band .box { background: var(--card); border: 1px solid var(--border); border-radius: 24px; padding: 56px 32px; position: relative; overflow: hidden; }
.cta-band .box::before { content: ''; position: absolute; inset: auto -20% -60% -20%; height: 300px; background: radial-gradient(50% 100% at 50% 100%, rgba(160,107,255,.22), transparent 70%); }
.cta-band h2 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin: 0 0 12px; letter-spacing: -0.02em; }
.cta-band p { color: var(--text-dim); margin: 0 auto 28px; max-width: 500px; }
.email-pill { display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; border-radius: 12px; background: var(--bg-soft); border: 1px solid var(--border); font-weight: 600; }

/* Footer */
footer { border-top: 1px solid var(--border); padding: 56px 0 40px; }
.foot-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.foot-col h5 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-faint); margin: 0 0 14px; }
.foot-col a { display: block; color: var(--text-dim); font-size: 0.92rem; padding: 4px 0; transition: color .15s; }
.foot-col a:hover { color: var(--text); }
.foot-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.85rem; color: var(--text-faint); }

/* Legal pages */
.legal { max-width: 800px; margin: 0 auto; padding: 64px 24px 96px; }
.legal a.back { color: var(--brand-2); font-weight: 600; font-size: 0.9rem; }
.legal h1 { font-size: 2.2rem; letter-spacing: -0.02em; margin: 24px 0 4px; }
.legal .updated { color: var(--text-faint); font-size: 0.9rem; margin-bottom: 40px; }
.legal h2 { font-size: 1.3rem; margin: 40px 0 12px; letter-spacing: -0.01em; }
.legal p, .legal li { color: var(--text-dim); font-size: 0.98rem; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal strong { color: var(--text); }
