/* ============================================================
   Mon Ethnie — marketing landing
   Theme mirrors the Flutter app (MonEthnieColors).
   ============================================================ */

:root {
  --green: #0E6B3A;
  --orange: #E87817;
  --brown: #3A2418;
  --gold: #D9A11B;
  --offwhite: #F6F0E7;
  --grey-ui: #EAEAEA;
  --grey-text: #6E6E6E;
  --black: #121212;
  --red: #E84855;

  --bg: var(--offwhite);
  --ink: var(--brown);
  --muted: var(--grey-text);
  --card: #ffffff;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 10px 30px rgba(58, 36, 24, 0.08);
  --shadow-md: 0 24px 60px rgba(58, 36, 24, 0.14);
  --shadow-lg: 0 40px 90px rgba(58, 36, 24, 0.18);
  --maxw: 1160px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-head: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand__name { font-family: var(--font-head); line-height: 1.08; letter-spacing: -0.02em; }

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

.grad {
  background: linear-gradient(100deg, var(--green), var(--orange) 55%, var(--gold));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- animated background orbs ---------- */
.bg-orbs { position: fixed; inset: 0; z-index: -2; overflow: hidden; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.30; animation: float 18s var(--ease) infinite; }
.orb--green  { width: 460px; height: 460px; background: var(--green);  top: -140px; left: -120px; }
.orb--orange { width: 420px; height: 420px; background: var(--orange); top: 32%; right: -160px; animation-delay: -6s; }
.orb--gold   { width: 380px; height: 380px; background: var(--gold);   bottom: -160px; left: 28%; animation-delay: -11s; }
@keyframes float { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(28px,-34px) scale(1.08); } }
@media (prefers-reduced-motion: reduce) { .orb { animation: none; } }

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--green), var(--orange), var(--gold));
  z-index: 100; transition: width 0.1s linear;
}

/* ---------- NAV ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), padding 0.35s var(--ease);
  padding: 14px 0;
}
.nav.is-scrolled {
  background: rgba(246, 240, 231, 0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 8px 30px rgba(58, 36, 24, 0.07);
  padding: 9px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__logo { width: 40px; height: 40px; border-radius: 11px; box-shadow: var(--shadow-sm); }
.brand__name { font-weight: 800; font-size: 1.24rem; color: var(--brown); }
.nav__links { display: flex; align-items: center; gap: 26px; }
.nav__links a { font-weight: 600; font-size: 0.96rem; color: var(--brown); opacity: 0.78; transition: opacity 0.2s; }
.nav__links a:hover { opacity: 1; }
.nav__cta {
  background: var(--brown); color: #fff !important; opacity: 1 !important;
  padding: 11px 18px; border-radius: 11px; box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2.5px; background: var(--brown); border-radius: 3px; transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- shared ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; font-size: 0.82rem; letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--green); background: rgba(14, 107, 58, 0.08);
  padding: 8px 14px; border-radius: 999px; margin-bottom: 22px;
}
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 4px rgba(232, 120, 23, 0.18); }

.section { padding: clamp(70px, 9vw, 130px) 0; position: relative; }
.section__head { max-width: 680px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.kicker { display: inline-block; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem; color: var(--orange); margin-bottom: 14px; }
.section__head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; color: var(--brown); }
.section__head p { margin-top: 14px; color: var(--muted); font-size: 1.06rem; }

/* ---------- HERO ---------- */
.hero { position: relative; padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 7vw, 96px); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.hero__title { font-size: clamp(2.5rem, 6vw, 4.4rem); font-weight: 900; color: var(--brown); }
.hero__lead { margin-top: 22px; font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--muted); max-width: 520px; }
.hero__pills { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.hero__pills li { background: var(--card); border: 1px solid var(--grey-ui); border-radius: 999px; padding: 9px 15px; font-size: 0.9rem; font-weight: 600; box-shadow: var(--shadow-sm); }

.store-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.store-row--center { justify-content: center; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--brown); color: #fff;
  padding: 12px 20px; border-radius: 14px; box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.store-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.store-btn__icon { width: 26px; height: 26px; flex: none; }
.store-btn__txt { display: flex; flex-direction: column; line-height: 1.05; }
.store-btn__txt small { font-size: 0.66rem; opacity: 0.8; letter-spacing: 0.02em; }
.store-btn__txt strong { font-size: 1.05rem; font-weight: 700; font-family: var(--font-head); }
.store-btn--light { background: #fff; color: var(--brown); }

/* ---------- phone mockup ---------- */
.hero__visual { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative; width: min(340px, 86vw); aspect-ratio: 9 / 19;
  background: var(--brown); border-radius: 42px; padding: 12px;
  box-shadow: var(--shadow-lg); transform: rotate(2deg);
  transition: transform 0.5s var(--ease);
}
.hero__visual:hover .phone { transform: rotate(0deg) translateY(-4px); }
.phone__notch { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 120px; height: 22px; background: var(--brown); border-radius: 0 0 16px 16px; z-index: 3; }
.phone__screen { width: 100%; height: 100%; background: var(--offwhite); border-radius: 32px; overflow: hidden; display: flex; flex-direction: column; }
.phone__topbar { display: flex; align-items: center; gap: 10px; padding: 18px 16px 12px; }
.phone__topbar img { width: 34px; height: 34px; border-radius: 9px; }
.phone__topbar strong { display: block; font-size: 0.92rem; color: var(--brown); font-weight: 800; }
.phone__topbar span { font-size: 0.68rem; color: var(--muted); }
.phone__map { position: relative; flex: 1; margin: 0 12px; border-radius: 18px; overflow: hidden; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05); }
.phone__map img { width: 100%; height: 100%; object-fit: cover; }
.map-node {
  position: absolute; transform: translate(-50%, -50%);
  width: 34px; height: 34px; border-radius: 11px; display: grid; place-items: center;
  font-weight: 900; color: #fff; font-size: 0.92rem; background: var(--brown);
  border: 2px solid rgba(255,255,255,0.85); box-shadow: 0 6px 14px rgba(0,0,0,0.28);
}
.map-node--done { background: var(--green); }
.map-node--active { background: var(--orange); width: 40px; height: 40px; animation: pulse 1.8s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(232,120,23,0.5); } 50% { box-shadow: 0 0 0 12px rgba(232,120,23,0); } }
.phone__hud { display: flex; gap: 7px; padding: 12px; flex-wrap: wrap; }
.hud-chip { font-size: 0.68rem; font-weight: 800; padding: 6px 9px; border-radius: 9px; }
.hud-chip--gold { color: var(--gold); background: rgba(217,161,27,0.14); }
.hud-chip--orange { color: var(--orange); background: rgba(232,120,23,0.14); }
.hud-chip--green { color: var(--green); background: rgba(14,107,58,0.14); }

.floaty { position: absolute; width: 64px; height: 64px; background: #fff; border-radius: 18px; display: grid; place-items: center; box-shadow: var(--shadow-md); animation: bob 4s ease-in-out infinite; }
.floaty img { width: 34px; height: 34px; }
.floaty--1 { top: 8%; left: -6%; animation-delay: -0.5s; }
.floaty--2 { bottom: 16%; right: -7%; animation-delay: -1.6s; }
.floaty--3 { bottom: -3%; left: 12%; animation-delay: -2.7s; }
@keyframes bob { 0%,100% { transform: translateY(0) rotate(-3deg); } 50% { transform: translateY(-14px) rotate(3deg); } }
@media (prefers-reduced-motion: reduce) { .floaty, .map-node--active { animation: none; } }

.scroll-hint { display: block; width: 26px; height: 42px; border: 2px solid rgba(58,36,24,0.3); border-radius: 14px; margin: 38px auto 0; position: relative; }
.scroll-hint span { position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 5px; height: 5px; border-radius: 50%; background: var(--orange); animation: scrolldot 1.8s infinite; }
@keyframes scrolldot { 0% { opacity: 0; top: 8px; } 30% { opacity: 1; } 60% { opacity: 1; top: 24px; } 100% { opacity: 0; top: 24px; } }

/* ---------- STATS ---------- */
.stats { padding: 8px 0 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; background: var(--brown); color: #fff; border-radius: var(--radius); padding: 34px 24px; box-shadow: var(--shadow-md); }
.stat { text-align: center; }
.stat__num { display: block; font-family: var(--font-head); font-weight: 900; font-size: clamp(1.8rem, 3vw, 2.6rem); background: linear-gradient(90deg,#fff,var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { font-size: 0.86rem; opacity: 0.82; }

/* ---------- FEATURES ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  background: var(--card); border: 1px solid var(--grey-ui); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-card__icon { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px; background: color-mix(in srgb, var(--c) 12%, #fff); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--c) 22%, transparent); }
.feature-card__icon img { width: 34px; height: 34px; }
.feature-card h3 { font-size: 1.22rem; font-weight: 700; color: var(--brown); margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 0.97rem; }

/* ---------- JOURNEY ---------- */
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 940px; margin: 0 auto; }
.step { display: flex; gap: 20px; align-items: flex-start; background: var(--card); border: 1px solid var(--grey-ui); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__num { font-family: var(--font-head); font-weight: 900; font-size: 2rem; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--orange); flex: none; }
.step__body h3 { font-size: 1.16rem; color: var(--brown); margin-bottom: 6px; }
.step__body p { color: var(--muted); font-size: 0.96rem; }

/* ---------- LANGUAGES ---------- */
.lang-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lang-card {
  position: relative; overflow: hidden;
  background: var(--card); border: 1px solid var(--grey-ui); border-radius: var(--radius-sm);
  padding: 22px 20px; box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.lang-card::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 4px; background: linear-gradient(var(--green), var(--orange)); opacity: 0; transition: opacity 0.3s; }
.lang-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.lang-card:hover::before { opacity: 1; }
.lang-card h3 { font-size: 1.18rem; color: var(--brown); margin-bottom: 5px; }
.lang-card p { font-size: 0.88rem; color: var(--muted); }
.lang-more { text-align: center; margin-top: 28px; color: var(--muted); font-weight: 600; }

/* ---------- ECOSYSTEM ---------- */
.eco-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.eco-card { background: var(--card); border: 1px solid var(--grey-ui); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-sm); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.eco-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.eco-card__badge { width: 62px; height: 62px; border-radius: 18px; display: grid; place-items: center; font-size: 1.7rem; margin-bottom: 18px; background: color-mix(in srgb, var(--c) 14%, #fff); box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--c) 26%, transparent); }
.eco-card h3 { font-size: 1.3rem; color: var(--brown); margin-bottom: 8px; }
.eco-card p { color: var(--muted); }

/* ---------- DOWNLOAD ---------- */
.download__card {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(135deg, var(--brown), #2a1a10);
  color: #fff; border-radius: 28px; padding: clamp(46px, 6vw, 76px) 24px;
  box-shadow: var(--shadow-lg);
}
.download__glow { position: absolute; inset: -40% 30% auto; height: 380px; background: radial-gradient(circle at 50% 0, rgba(232,120,23,0.5), transparent 62%); filter: blur(8px); }
.download__logo { width: 78px; height: 78px; border-radius: 20px; margin: 0 auto 22px; box-shadow: var(--shadow-md); position: relative; }
.download__card h2 { font-size: clamp(1.9rem, 4vw, 3rem); position: relative; }
.download__card p { color: rgba(255,255,255,0.82); margin: 14px auto 0; max-width: 460px; position: relative; }
.download__card .store-row { position: relative; margin-top: 32px; }

/* ---------- FOOTER ---------- */
.footer { padding: 50px 0 36px; border-top: 1px solid var(--grey-ui); margin-top: 30px; }
.footer__inner { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between; }
.footer__brand { display: flex; align-items: center; gap: 12px; }
.footer__brand img { width: 42px; height: 42px; border-radius: 11px; }
.footer__brand strong { display: block; font-family: var(--font-head); font-weight: 800; color: var(--brown); }
.footer__brand span { font-size: 0.84rem; color: var(--muted); }
.footer__links { display: flex; gap: 22px; }
.footer__links a { font-weight: 600; color: var(--muted); font-size: 0.92rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--brown); }
.footer__legal { width: 100%; text-align: center; color: var(--muted); font-size: 0.84rem; border-top: 1px dashed var(--grey-ui); padding-top: 20px; margin-top: 6px; }

/* ---------- active nav link (legal pages) ---------- */
.nav__links a[aria-current="page"] { opacity: 1; color: var(--green); }

/* ============================================================
   Legal / support pages (privacy.html, terms.html, support.html)
   ============================================================ */
.doc-page { padding: clamp(20px, 4vw, 40px) 0 clamp(50px, 7vw, 90px); }
.doc-container { max-width: 880px; }
.doc-back {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted); font-weight: 600; font-size: 0.92rem;
  padding: 8px 0; margin-bottom: 10px; transition: color 0.2s, gap 0.2s var(--ease);
}
.doc-back:hover { color: var(--brown); gap: 10px; }

.doc { margin: 0 auto; }
.doc__head { text-align: center; margin: 14px auto clamp(30px, 4vw, 46px); }
.doc__title { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 800; color: var(--brown); }
.doc__updated {
  display: inline-block; margin-top: 14px;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--green); background: rgba(14, 107, 58, 0.08);
  padding: 7px 14px; border-radius: 999px;
}
.doc__intro {
  margin: 18px auto 0; max-width: 640px; color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem); line-height: 1.65;
}

.doc__section {
  background: var(--card); border: 1px solid var(--grey-ui); border-radius: var(--radius);
  padding: clamp(22px, 3vw, 30px); box-shadow: var(--shadow-sm); margin-bottom: 16px;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.doc__section::before {
  content: ""; position: absolute; inset: 0 auto 0 0; width: 4px;
  background: linear-gradient(var(--green), var(--orange)); opacity: 0; transition: opacity 0.3s;
}
.doc__section:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.doc__section:hover::before { opacity: 1; }
.doc__heading { font-size: clamp(1.18rem, 2vw, 1.42rem); font-weight: 700; color: var(--brown); margin-bottom: 12px; }
.doc__p { color: var(--muted); font-size: 1rem; line-height: 1.7; }
.doc__p + .doc__p { margin-top: 12px; }
.doc__list { list-style: none; margin-top: 6px; display: grid; gap: 11px; }
.doc__list li { position: relative; padding-left: 28px; color: var(--muted); line-height: 1.6; }
.doc__list li::before {
  content: ""; position: absolute; left: 4px; top: 9px; width: 9px; height: 9px;
  border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 0 4px rgba(232, 120, 23, 0.14);
}

/* ---- support contact card ---- */
.doc__contact {
  background: linear-gradient(135deg, var(--brown), #2a1a10); color: #fff;
  border-radius: var(--radius); padding: clamp(22px, 3vw, 30px);
  box-shadow: var(--shadow-md); margin-bottom: 22px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px;
}
.doc__contact-row { display: flex; align-items: center; gap: 14px; }
.doc__contact-ic {
  width: 44px; height: 44px; flex: none; display: grid; place-items: center;
  font-size: 1.25rem; background: rgba(255, 255, 255, 0.1); border-radius: 12px;
}
.doc__contact-body { display: flex; flex-direction: column; min-width: 0; }
.doc__contact-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.6); font-weight: 700; }
.doc__contact-value { font-weight: 700; color: #fff; font-size: 1rem; word-break: break-word; }
a.doc__contact-value { transition: color 0.2s; }
a.doc__contact-value:hover { color: var(--gold); }

/* ---- support contact form ---- */
.doc__form-card {
  background: var(--card); border: 1px solid var(--grey-ui); border-radius: var(--radius);
  padding: clamp(24px, 3.4vw, 36px); box-shadow: var(--shadow-sm); margin-top: 6px;
}
.doc__form-card .doc__heading { margin-bottom: 8px; }
.doc__form-card .doc__p { margin-bottom: 22px; }
.doc__form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field__label { font-size: 0.84rem; font-weight: 700; color: var(--brown); }
.form-field__input {
  font-family: var(--font-body); font-size: 1rem; color: var(--brown);
  background: var(--offwhite); border: 1.5px solid var(--grey-ui); border-radius: 12px;
  padding: 13px 15px; width: 100%; resize: vertical; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-field__input::placeholder { color: var(--grey-text); }
.form-field__input:focus {
  outline: none; background: #fff; border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(14, 107, 58, 0.12);
}
textarea.form-field__input { min-height: 120px; line-height: 1.55; }
.form-field__error { font-size: 0.8rem; color: var(--red); min-height: 0; font-weight: 600; }
.form-field.is-invalid .form-field__input { border-color: var(--red); background: #fff; }
.form-field.is-invalid .form-field__input:focus { box-shadow: 0 0 0 4px rgba(232, 72, 85, 0.12); }

.form-btn {
  justify-self: start; margin-top: 4px; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem; color: #fff;
  background: var(--green); border: 0; border-radius: 13px; padding: 14px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, opacity 0.2s;
}
.form-btn:hover:not(:disabled) { transform: translateY(-3px); box-shadow: var(--shadow-md); background: #0c5b31; }
.form-btn:disabled { opacity: 0.65; cursor: progress; }

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .form-btn { justify-self: stretch; text-align: center; }
}

/* ---------- toast (store "coming soon") ---------- */
.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 24px);
  background: var(--brown); color: #fff; font-weight: 600; font-size: 0.95rem;
  padding: 13px 20px; border-radius: 14px; box-shadow: var(--shadow-lg);
  z-index: 120; opacity: 0; pointer-events: none; max-width: min(92vw, 420px);
  text-align: center; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* ============================================================
   Reveal-on-scroll animations
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); will-change: opacity, transform; }
.reveal[data-reveal="right"] { transform: translateX(44px); }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { display: flex; flex-direction: column; align-items: center; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .store-row, .hero__pills { justify-content: center; }
  .hero__visual { margin-top: 20px; }
  .feature-grid, .eco-grid { grid-template-columns: repeat(2, 1fr); }
  .lang-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .nav__links {
    position: fixed; inset: 64px 14px auto; flex-direction: column; align-items: stretch;
    background: rgba(246,240,231,0.96); backdrop-filter: blur(14px);
    border: 1px solid var(--grey-ui); border-radius: 18px; padding: 16px; gap: 6px;
    box-shadow: var(--shadow-md); transform: translateY(-14px); opacity: 0; pointer-events: none;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  }
  .nav__links a { padding: 11px 12px; border-radius: 10px; }
  .nav__links a:hover { background: rgba(58,36,24,0.05); }
  .nav.is-open .nav__links { opacity: 1; transform: none; pointer-events: auto; }
  .nav__toggle { display: flex; }
  .nav__cta { text-align: center; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 22px 16px; }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .feature-grid, .eco-grid, .lang-grid { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; text-align: center; }
}
