/* ============================================================
   jeeto — minimal shared styles
   White canvas, warm brown ink, single orange accent.
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

:root {
  --orange: #d9711e; --orange-deep: #b1560f;
  --brown: #3a241a; --ink: #221a15; --muted: #8b7d73; --faint: #b8aca2;
  --bg: #ffffff; --paper: #faf7f3;
  --line: rgba(34,26,21,0.10); --line-2: rgba(34,26,21,0.16);
  --r: 12px; --r-lg: 18px;
  --ease: cubic-bezier(0.22,0.61,0.36,1);
  --font: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --mono: 'Space Mono', ui-monospace, Menlo, monospace;
}
* { box-sizing: border-box; }
html { margin: 0; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased; line-height: 1.5; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.wrap { max-width: 980px; margin: 0 auto; padding: 0 28px; }
.wrap--wide { max-width: 1140px; }

/* ---------- Nav ---------- */
.nav { border-bottom: 1px solid var(--line); position: sticky; top: 0; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); z-index: 30; }
.nav__in { max-width: 1140px; margin: 0 auto; height: 68px; padding: 0 28px; display: flex; align-items: center; gap: 8px; }
.nav__brand img { height: 26px; display: block; }
.nav__links { display: flex; gap: 4px; margin-left: 24px; }
.nav__links a { padding: 8px 12px; border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--muted); transition: color 130ms var(--ease); }
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }
.nav__sp { flex: 1; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 18px; min-height: 42px; font-size: 14.5px; font-weight: 700; border-radius: 10px; cursor: pointer; border: 1px solid transparent; transition: background 130ms var(--ease), border-color 130ms var(--ease), color 130ms var(--ease); white-space: nowrap; }
.btn--orange { background: var(--orange); color: #fff; }
.btn--orange:hover { background: var(--orange-deep); }
.btn--line { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--line:hover { border-color: var(--ink); }
.btn--lg { padding: 13px 24px; min-height: 50px; font-size: 15.5px; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

/* wallet chip (when connected) */
.wallet { display: inline-flex; align-items: center; gap: 9px; padding: 8px 12px; border-radius: 10px; border: 1px solid var(--line-2); font-size: 13.5px; font-weight: 700; cursor: pointer; }
.wallet .bal { color: var(--muted); font-family: var(--mono); font-weight: 400; }
.wallet .addr { color: var(--ink); }
.wallet .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }

/* ---------- Sections ---------- */
.sec { padding: clamp(56px,9vh,120px) 0; }
.sec--line { border-top: 1px solid var(--line); }
.eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.h2 { margin: 0; font-size: clamp(26px,3.4vw,38px); line-height: 1.1; letter-spacing: -0.025em; font-weight: 800; color: var(--brown); }
.lead { color: var(--muted); font-size: 17px; line-height: 1.6; max-width: 560px; }

/* ---------- Footer ---------- */
.foot { border-top: 1px solid var(--line); }
.foot__in { max-width: 1140px; margin: 0 auto; padding: 40px 28px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.foot__in img { height: 22px; }
.foot__links { display: flex; gap: 20px; }
.foot__links a { font-size: 14px; font-weight: 600; color: var(--muted); }
.foot__links a:hover { color: var(--ink); }
.foot__sp { flex: 1; }
.foot__small { font-size: 12.5px; color: var(--faint); }
.foot__disc { max-width: 1140px; margin: 0 auto; padding: 0 28px 36px; font-size: 11px; line-height: 1.55; color: var(--faint); }

/* ---------- Toast ---------- */
.toast { position: fixed; left: 50%; bottom: 26px; transform: translateX(-50%) translateY(16px); z-index: 80; padding: 12px 18px; border-radius: 10px; background: var(--brown); color: #fff; font-size: 14px; font-weight: 600; box-shadow: 0 12px 30px rgba(0,0,0,0.22); opacity: 0; pointer-events: none; transition: opacity 180ms var(--ease), transform 180ms var(--ease); }
.toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 720px) {
  .nav__links { display: none; }
  .foot__in { flex-direction: column; align-items: flex-start; }
}
