/* ===========================================================================
   Munimji — landing page styles
   Brand: orange #FF6510 → #FF8A3D (from app icon), AI accent #6E5CFF
   =========================================================================== */

:root {
  --orange: #FF6510;
  --orange-2: #FF8A3D;
  --orange-ink: #C24300;
  --ai: #6E5CFF;
  --ai-2: #8580FF;
  --ink: #15161B;
  --ink-2: #3A3D47;
  --muted: #6B6F7B;
  --line: #ECECEF;
  --bg: #FFFFFF;
  --bg-soft: #FFF7F2;
  --bg-dark: #15161B;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(16,18,24,.06), 0 4px 16px rgba(16,18,24,.05);
  --shadow-md: 0 10px 30px rgba(16,18,24,.10);
  --shadow-orange: 0 14px 34px rgba(255,101,16,.30);
  --maxw: 1140px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, system-ui, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { line-height: 1.12; letter-spacing: -0.02em; margin: 0 0 .5em; font-weight: 800; }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.18rem; }
p  { margin: 0 0 1rem; color: var(--ink-2); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  color: var(--orange-ink); background: var(--bg-soft);
  border: 1px solid #FFE0CC; padding: 6px 12px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow.ai { color: #4B3FC4; background: #F1EFFF; border-color: #E0DBFF; }
.section { padding: clamp(56px, 9vw, 110px) 0; }
.section--soft { background: var(--bg-soft); }
.section__head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section__head p { font-size: 1.08rem; }
.text-grad {
  background: linear-gradient(100deg, var(--orange), var(--orange-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.text-grad--ai { background: linear-gradient(100deg, var(--ai), var(--ai-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 1rem; padding: 14px 24px; border-radius: 14px;
  border: 1.5px solid transparent; cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: linear-gradient(120deg, var(--orange), var(--orange-2)); color: #fff; box-shadow: var(--shadow-orange); }
.btn--primary:hover { box-shadow: 0 18px 40px rgba(255,101,16,.42); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: #D8D8DE; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; font-size: 1.22rem; letter-spacing: -.02em; }
.brand img { width: 34px; height: 34px; border-radius: 9px; box-shadow: var(--shadow-sm); }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { color: var(--ink-2); font-weight: 600; font-size: .96rem; }
.nav__links a:hover { color: var(--orange-ink); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: clamp(40px, 6vw, 72px); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 480px at 78% -8%, rgba(255,138,61,.20), transparent 60%),
    radial-gradient(700px 500px at 6% 8%, rgba(110,92,255,.12), transparent 55%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero h1 { margin-bottom: 18px; }
.hero__sub { font-size: 1.18rem; max-width: 540px; color: var(--ink-2); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin: 26px 0 18px; align-items: center; }
.hero__note { font-size: .9rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero__note strong { color: var(--ink); }

/* ---------- Store badges ---------- */
.stores { display: flex; flex-wrap: wrap; gap: 12px; }
.store {
  display: inline-flex; align-items: center; gap: 11px; padding: 10px 16px;
  border-radius: 13px; background: var(--bg-dark); color: #fff; min-width: 168px;
  border: 1.5px solid var(--bg-dark); transition: transform .15s ease, opacity .2s;
}
.store:hover { transform: translateY(-2px); }
.store svg { width: 24px; height: 24px; flex: none; }
.store__txt { display: flex; flex-direction: column; line-height: 1.15; }
.store__txt small { font-size: .68rem; opacity: .8; letter-spacing: .02em; }
.store__txt span { font-size: 1.02rem; font-weight: 700; }
.store--soon { background: #fff; color: var(--ink-2); border-color: var(--line); cursor: default; opacity: .92; }
.store--soon:hover { transform: none; }
.store--soon .badge-soon {
  margin-left: auto; font-size: .6rem; font-weight: 800; letter-spacing: .06em;
  background: var(--bg-soft); color: var(--orange-ink); padding: 3px 7px; border-radius: 6px; border: 1px solid #FFE0CC;
}

/* ---------- Phone mockup ---------- */
.devices { position: relative; display: flex; justify-content: center; align-items: flex-end; gap: 0; min-height: 560px; }
.phone {
  position: relative; width: 290px; aspect-ratio: 9 / 19.5;
  background: #0d0e12; border-radius: 44px; padding: 11px;
  box-shadow: 0 30px 70px rgba(16,18,24,.30), 0 6px 20px rgba(16,18,24,.18);
  border: 1px solid #2a2b31;
}
.phone__notch {
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  width: 108px; height: 26px; background: #0d0e12; border-radius: 0 0 16px 16px; z-index: 4;
}
.phone__screen {
  position: relative; width: 100%; height: 100%; border-radius: 34px; overflow: hidden;
  background: var(--bg-soft); display: flex; flex-direction: column;
}
.phone--front { z-index: 3; transform: translateY(-10px) rotate(-2deg); }
.phone--back { position: absolute; right: 8%; bottom: 0; transform: translateY(10px) rotate(5deg) scale(.92); z-index: 2; filter: saturate(1.02); }
@media (max-width: 980px){ .phone--back { display: none; } }

/* app screen — chat */
.appbar { background: linear-gradient(120deg, var(--orange), var(--orange-2)); color: #fff; padding: 38px 16px 14px; }
.appbar__row { display: flex; align-items: center; gap: 10px; }
.appbar__row .ic { width: 30px; height: 30px; border-radius: 8px; background: rgba(255,255,255,.22); display: grid; place-items: center; font-weight: 800; }
.appbar h4 { margin: 0; font-size: .98rem; font-weight: 700; }
.appbar p { margin: 0; font-size: .72rem; color: rgba(255,255,255,.85); }
.chat { flex: 1; padding: 14px 13px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; background:
  radial-gradient(circle at 90% 0, rgba(110,92,255,.06), transparent 40%), var(--bg-soft); }
.bubble { max-width: 84%; padding: 9px 12px; border-radius: 15px; font-size: .76rem; line-height: 1.4; box-shadow: var(--shadow-sm); }
.bubble--user { align-self: flex-end; background: linear-gradient(120deg, var(--orange), var(--orange-2)); color: #fff; border-bottom-right-radius: 5px; }
.bubble--bot { align-self: flex-start; background: #fff; color: var(--ink); border-bottom-left-radius: 5px; }
.bubble--bot b { color: var(--orange-ink); }
.chip-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 2px; }
.chip { font-size: .64rem; font-weight: 700; padding: 5px 9px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--ink-2); }
.inv-card { background: #fff; border-radius: 12px; padding: 11px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.inv-card__top { display: flex; justify-content: space-between; font-size: .7rem; color: var(--muted); }
.inv-card__amt { font-size: 1.1rem; font-weight: 800; margin: 3px 0; }
.inv-card__amt span { color: var(--orange-ink); }
.inv-card__pill { display: inline-block; font-size: .58rem; font-weight: 800; color: #fff; background: #10B981; padding: 2px 7px; border-radius: 6px; }
.chatbar { padding: 9px 12px 14px; background: var(--bg-soft); }
.chatbar__in { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; font-size: .72rem; color: var(--muted); }
.chatbar__mic { margin-left: auto; width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(120deg, var(--ai), var(--ai-2)); display: grid; place-items: center; color: #fff; }

/* mini bar chart on back phone */
.insight { flex: 1; padding: 16px 14px; background: #fff; }
.insight h5 { margin: 0 0 2px; font-size: .82rem; }
.insight p.k { margin: 0 0 14px; font-size: .66rem; color: var(--muted); }
.bars { display: flex; align-items: flex-end; gap: 9px; height: 150px; padding-top: 8px; }
.bars i { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, var(--orange-2), var(--orange)); display: block; }
.bars i:nth-child(3){ background: linear-gradient(180deg, var(--ai-2), var(--ai)); }
.legend { font-size: .6rem; color: var(--muted); display: flex; justify-content: space-between; margin-top: 8px; }

/* ---------- Logos / trust strip ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.strip__row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 22px; padding: 26px 0; text-align: center; }
.strip__item { flex: 1 1 150px; }
.strip__item b { display: block; font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; }
.strip__item span { font-size: .82rem; color: var(--muted); }

/* ---------- Feature grid ---------- */
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__ic { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 16px; background: var(--bg-soft); color: var(--orange); }
.card__ic.ai { background: #F1EFFF; color: var(--ai); }
.card__ic svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 6px; }
.card p { margin: 0; font-size: .94rem; }

/* ---------- Split feature (AI) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split--rev .split__media { order: -1; }
.feature-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; color: var(--ink-2); }
.feature-list .tick { flex: none; width: 24px; height: 24px; border-radius: 7px; background: var(--bg-soft); color: var(--orange); display: grid; place-items: center; font-weight: 800; font-size: .8rem; margin-top: 2px; }
.feature-list .tick.ai { background: #F1EFFF; color: var(--ai); }

/* media card (chat demo, big) */
.media-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-md); }
.media-card .chat { border-radius: 18px; background: var(--bg-soft); min-height: 360px; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; position: relative; box-shadow: var(--shadow-sm); }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: -16px; left: 24px; width: 38px; height: 38px; border-radius: 11px; background: linear-gradient(120deg, var(--orange), var(--orange-2)); color: #fff; font-weight: 800; display: grid; place-items: center; box-shadow: var(--shadow-orange); }
.step h3 { margin-top: 8px; }
.step p { margin: 0; font-size: .95rem; }

/* ---------- Platforms ---------- */
.platforms { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.platform { text-align: center; padding: 32px 24px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.platform__ic { width: 56px; height: 56px; margin: 0 auto 16px; color: var(--ink); }
.platform h3 { margin-bottom: 4px; }
.platform .state { font-size: .86rem; font-weight: 700; }
.platform .state.live { color: #10B981; }
.platform .state.soon { color: var(--orange-ink); }
.platform p { font-size: .9rem; margin: 10px 0 18px; }

/* ---------- Pricing ---------- */
.price-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 820px; margin: 0 auto; }
.price { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); }
.price--pro { border: 2px solid var(--orange); box-shadow: var(--shadow-orange); position: relative; }
.price--pro .tag { position: absolute; top: -13px; right: 24px; background: linear-gradient(120deg,var(--orange),var(--orange-2)); color:#fff; font-size:.7rem; font-weight:800; padding:5px 12px; border-radius:8px; }
.price h3 { font-size: 1.3rem; }
.price .amt { font-size: 2.4rem; font-weight: 800; letter-spacing: -.03em; margin: 4px 0 2px; }
.price .amt small { font-size: .95rem; font-weight: 600; color: var(--muted); }
.price ul { list-style: none; padding: 0; margin: 18px 0 24px; display: grid; gap: 11px; }
.price li { font-size: .94rem; color: var(--ink-2); display: flex; gap: 10px; }
.price li::before { content: "✓"; color: var(--orange); font-weight: 800; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: 14px; background: #fff; margin-bottom: 12px; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq summary { cursor: pointer; padding: 18px 22px; font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--orange); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { padding: 0 22px 20px; margin: 0; font-size: .96rem; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(120deg, var(--orange), var(--orange-2)); color: #fff; border-radius: var(--radius-lg); padding: clamp(40px,6vw,68px); text-align: center; box-shadow: var(--shadow-orange); position: relative; overflow: hidden; }
.cta-band::after { content:""; position:absolute; inset:0; background: radial-gradient(500px 240px at 80% -20%, rgba(255,255,255,.22), transparent 60%); }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 560px; margin: 0 auto 26px; position: relative; }
.cta-band .stores { justify-content: center; position: relative; }
.cta-band .store { background: #fff; color: var(--ink); border-color: #fff; }
.cta-band .store--soon { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.4); }
.cta-band .store--soon .badge-soon { background: rgba(255,255,255,.22); color: #fff; border-color: transparent; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-dark); color: #B9BCC6; padding: 56px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 38px; }
.footer .brand { color: #fff; margin-bottom: 12px; }
.footer p { color: #8A8E9A; font-size: .92rem; max-width: 280px; }
.footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; margin: 0 0 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer a { color: #B9BCC6; font-size: .94rem; }
.footer a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid #2a2b31; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .86rem; color: #777B86; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__sub { margin-inline: auto; }
  .hero__cta, .stores { justify-content: center; }
  .devices { margin-top: 24px; }
  .split, .split--rev .split__media { grid-template-columns: 1fr; order: 0; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .steps, .platforms { grid-template-columns: 1fr; }
  .price-wrap { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .nav__links, .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: block; }
  .nav.is-open .nav__links { display: flex; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; background: #fff; padding: 18px 22px; gap: 16px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); }
  .grid { grid-template-columns: 1fr; }
  .strip__row { gap: 14px; }
  .strip__item { flex-basis: 45%; }
  .footer__grid { grid-template-columns: 1fr; }
}
