/* ============================================================
   ExpoPilot Marketing Site — Shared Styles
   Tokens copied directly from tokens.css — single source of truth
   for the real product; this site should never drift from it.
   ============================================================ */
:root {
  --brand-50:  #FFF3ED;
  --brand-100: #FFE0D3;
  --brand-200: #FFC2A8;
  --brand-300: #FF9E76;
  --brand-400: #FF7A4D;
  --brand-500: #FF5A36;
  --brand-600: #E1430E;
  --brand-700: #B8360B;

  --ink-900: #191B20;
  --ink-800: #24272E;
  --ink-700: #3A3D45;
  --ink-600: #5A5D66;
  --slate-400: #A2A5AD;
  --slate-300: #C9CBD1;
  --line:    #E4E2DC;
  --paper:   #FBF8F3;
  --surface: #FFFFFF;
  --bg:      #F1EEE8;
  --dark-nav: #14161B;

  --success: #1F9D6B;
  --warning: #E8A417;
  --error:   #E23D2E;
  --info:    #2E6BE8;

  --chart-1: #FF5A36;
  --chart-2: #191B20;
  --chart-3: #12A4A4;
  --chart-4: #E8A417;
  --chart-5: #7C5CFF;
  --chart-6: #1F9D6B;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(20,22,27,.12);
  --shadow-md: 0 8px 20px -8px rgba(20,22,27,.24);
  --shadow-lg: 0 24px 48px -20px rgba(20,22,27,.40);

  --font-display: 'Sora', system-ui, sans-serif;
  --font-ui:      'Manrope', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--ink-900);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
}

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(241,238,232,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1160px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink-900);
}
.nav-logo span { color: var(--brand-500); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-700);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--brand-500); }
.nav-cta { display: flex; align-items: center; gap: 16px; }

@media (max-width: 640px) {
  .nav-links a.nav-link-hide-mobile { display: none; }
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand-500);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--brand-600); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--ink-900);
}
.btn-ghost:hover { color: var(--brand-500); }
.btn-lg { padding: 15px 28px; font-size: 15px; }
.btn-dark {
  background: var(--ink-900);
  color: #fff;
}
.btn-dark:hover { background: var(--ink-800); transform: translateY(-1px); }

/* ── Type helpers ────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-600);
}
h1, h2, h3 { font-family: var(--font-display); margin: 0; letter-spacing: -0.02em; }
p { margin: 0; line-height: 1.6; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--line);
  padding: 48px 32px;
  margin-top: 96px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink-900);
}
.footer-logo span { color: var(--brand-500); }
.footer-links { display: flex; gap: 24px; font-size: 13px; color: var(--ink-600); }
.footer-links a:hover { color: var(--brand-500); }
.footer-copy { font-size: 12px; color: var(--slate-400); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ── Product icons (shared across Home + Features) ─────────
   Real product icon system: neutral stroke + exactly one coral
   accent shape per icon, always visible — matches how these
   render in the actual admin console (no hover state there at
   all). Hover here only adds a bonus flourish; nothing is ever
   hidden by default, since touch devices have no true hover and
   would otherwise never see the accent at all. */
.icon-hover-trigger .accent-fill {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-box: fill-box;
  transform-origin: center;
}
.icon-hover-trigger:hover .accent-fill { transform: scale(1.28); }
.icon-hover-trigger .accent-draw {
  transition: stroke-width 0.25s ease;
}
.icon-hover-trigger:hover .accent-draw { stroke-width: 2.6; }
