:root {
  /* Neibrz brand */
  --orange-1: #fb923c;
  --orange-2: #ea580c;
  --orange-3: #c2410c;
  --cream: #fff7ed;
  --ink: #1c1917;
  --stone: #78716c;
  --stone-2: #a8a29e;
  --line: #efe6dc;
  --card: #ffffff;
  --grad: linear-gradient(135deg, var(--orange-1) 0%, var(--orange-2) 100%);
  --radius: 20px;
  --maxw: 1080px;
  --shadow: 0 24px 60px -24px rgba(234, 88, 12, 0.35);
  --ease: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(900px 500px at 85% -5%, #ffe4cc 0%, rgba(255, 247, 237, 0) 60%),
    radial-gradient(700px 500px at 0% 0%, #ffedd5 0%, rgba(255, 247, 237, 0) 55%),
    var(--cream);
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--orange-2); text-decoration: none; cursor: pointer; transition: color var(--ease); }
a:hover { text-decoration: underline; }

button, a, .store { cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--orange-2);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.eyebrow { text-align: center; font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange-3); margin: 0 0 10px; }

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 21px; letter-spacing: -0.02em; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand img { width: 34px; height: 34px; border-radius: 9px; display: block; }
.navlinks a { color: var(--stone); font-weight: 600; font-size: 15px; margin-left: 22px; }
.navlinks a:hover { color: var(--ink); text-decoration: none; }

/* Hero */
.hero { text-align: center; padding: 40px 0 8px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  color: var(--orange-3); font-weight: 700; font-size: 13px;
  box-shadow: 0 6px 20px -10px rgba(234, 88, 12, 0.4);
}
.badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--orange-2); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(234,88,12,.5);} 70% { box-shadow: 0 0 0 9px rgba(234,88,12,0);} 100% { box-shadow: 0 0 0 0 rgba(234,88,12,0);} }

.hero h1 {
  font-size: clamp(38px, 7.5vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 22px 0 16px;
}
.hero h1 .accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero .sub { color: var(--stone); font-size: clamp(17px, 2.4vw, 20px); max-width: 588px; margin: 0 auto; }
.note { margin: 20px auto 0; color: var(--stone-2); font-size: 14px; max-width: 480px; }

/* Store buttons */
.stores { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 30px auto 0; }
.store {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 11px 18px; border-radius: 14px;
  background: var(--ink); color: #fff;
  transition: transform var(--ease), box-shadow var(--ease);
  box-shadow: 0 10px 24px -14px rgba(28,25,23,0.7);
}
.store:hover { text-decoration: none; transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(28,25,23,0.7); }
.store svg { width: 22px; height: 22px; flex: 0 0 auto; fill: #fff; }
.store .lbl { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store .lbl small { font-size: 10px; font-weight: 600; opacity: 0.8; letter-spacing: 0.02em; }
.store .lbl strong { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }

/* Screenshot gallery */
.shots {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 44px 22px 18px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.shots::-webkit-scrollbar { height: 0; }
.shots img {
  flex: 0 0 auto;
  width: 232px;
  border-radius: 26px;
  scroll-snap-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.04);
}
@media (min-width: 900px) { .shots { justify-content: center; } }

/* Section heading */
.section-head { text-align: center; max-width: 620px; margin: 40px auto 4px; }
.section-head h2 { font-size: clamp(26px, 4.4vw, 38px); letter-spacing: -0.03em; margin: 0 0 10px; font-weight: 800; }
.section-head p { color: var(--stone); font-size: 17px; margin: 0; }

/* Features */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(244px, 1fr));
  gap: 16px;
  padding: 28px 0 8px;
}
.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.feature:hover { transform: translateY(-3px); box-shadow: 0 22px 44px -28px rgba(28,25,23,0.35); border-color: #e7d6c6; }
.feature .ico {
  width: 46px; height: 46px; border-radius: 13px;
  background: #fff3e8; color: var(--orange-2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature .ico svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { margin: 0 0 6px; font-size: 17px; letter-spacing: -0.01em; }
.feature p { margin: 0; color: var(--stone); font-size: 15px; }

/* Small "also" strip */
.also { display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: center; margin: 26px auto 0; max-width: 720px; }
.also span { display: inline-flex; align-items: center; gap: 8px; color: var(--stone); font-weight: 600; font-size: 14px; }
.also svg { width: 17px; height: 17px; stroke: var(--orange-2); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* CTA strip */
.cta {
  margin: 48px 0 12px;
  background: var(--grad);
  border-radius: 28px;
  padding: 48px 28px;
  text-align: center;
  color: var(--cream);
  box-shadow: var(--shadow);
}
.cta h2 { margin: 0 0 8px; font-size: clamp(26px, 4vw, 34px); letter-spacing: -0.02em; }
.cta p { margin: 0 auto 24px; max-width: 480px; color: #fff2e6; }
.cta .store { background: #fff; color: var(--ink); box-shadow: 0 12px 26px -14px rgba(0,0,0,0.4); }
.cta .store svg { fill: var(--ink); }

/* Footer */
.footer {
  margin-top: 56px;
  padding: 28px 0 48px;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  align-items: center; justify-content: center;
  color: var(--stone); font-size: 14px; text-align: center;
}
.footer a { color: var(--stone); font-weight: 600; }
.footer a:hover { color: var(--ink); text-decoration: none; }

/* Legal document pages */
.doc { max-width: 760px; margin: 8px auto 0; }
.doc h1 { font-size: clamp(28px, 5vw, 36px); letter-spacing: -0.02em; margin: 8px 0 4px; }
.doc .updated { color: var(--stone-2); font-size: 14px; margin: 0 0 28px; }
.doc h2 { font-size: 20px; margin: 34px 0 10px; letter-spacing: -0.01em; }
.doc h3 { font-size: 16px; margin: 20px 0 8px; }
.doc p, .doc li { color: #44403c; }
.doc ul { padding-left: 20px; }
.doc li { margin: 6px 0; }
.doc a.back { color: var(--stone); font-weight: 600; font-size: 15px; }
.doc .draft {
  border: 1px solid #fcd34d;
  background: #fffbeb;
  color: #92620e;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  margin: 0 0 28px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 26px 26px;
  box-shadow: 0 20px 50px -30px rgba(28,25,23,0.25);
}

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