/* BLYFT — global.css
   Single source of truth for design tokens and shared components.
   Link this before any page-specific styles on every page.
*/

/* ——— TOKENS ——— */
:root {
  --bg: #0B0B0F;
  --bg-2: #131319;
  --bg-3: #1B1B22;
  --ink: #F5F1EA;
  --ink-dim: #A5A09A;
  --ink-dimmer: #6B6862;
  --accent: #F5F1EA;
  --line: rgba(245,241,234,0.08);
  --line-strong: rgba(245,241,234,0.18);
  --sans: 'Satoshi', system-ui, sans-serif;
  --mono: 'Geist Mono', ui-monospace, monospace;
}

/* ——— RESET ——— */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: #0B0B0F; }

/* ——— LAYOUT ——— */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ——— NAV ——— */
.nav { padding: 22px 0; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 50; background: rgba(11,11,15,0.85); background: color-mix(in oklab, var(--bg) 85%, transparent); backdrop-filter: blur(16px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand-logo { height: 22px; width: auto; display: block; }
.nav-links { display: flex; gap: 6px; background: rgba(19,19,25,0.70); background: color-mix(in oklab, var(--bg-2) 70%, transparent); border: 1px solid var(--line); border-radius: 999px; padding: 6px; backdrop-filter: blur(10px); }
.nav-links a { font-size: 14px; font-weight: 500; padding: 9px 16px; border-radius: 999px; color: var(--ink-dim); transition: color .2s, background .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: rgba(245,241,234,0.08); background: color-mix(in oklab, var(--ink) 8%, transparent); }
@media (max-width: 900px) { .nav-links { display: none; } }

/* ——— BUTTONS ——— */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: 999px; font-size: 14px; font-weight: 500; border: 1px solid transparent; cursor: pointer; font-family: var(--sans); transition: transform .15s, background .2s; background: none; color: inherit; text-decoration: none; }
.btn-primary { background: var(--ink); color: #0B0B0F; }
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost { border-color: var(--line-strong); }
.btn-ghost:hover { background: rgba(245,241,234,0.05); }

/* ——— EYEBROW ——— */
.eyebrow { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .15em; color: var(--ink-dim); display: inline-flex; align-items: center; gap: 10px; }
.eyebrow::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--ink); flex-shrink: 0; }

/* ——— FOOTER (simple pages) ——— */
footer { padding: 48px 0; border-top: 1px solid var(--line); }
.footer-simple { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: var(--ink-dim); transition: color .2s; }
.footer-links a:hover { color: var(--ink); }
.footer-copy { font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-dimmer); }

/* ——— RAZORPAY PAY STRIP ——— */
.footer-pay { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; border-top: 1px solid var(--line); }
.footer-pay-simple { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); margin-top: 12px; flex-wrap: wrap; }
.footer-pay-label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-dimmer); }
.razorpay-payment-button { border-radius: 999px !important; font-family: var(--sans) !important; font-size: 13px !important; cursor: pointer !important; }
