@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Payoneer-inspired palette */
  --navy:      #0a1628;
  --navy-mid:  #0f2140;
  --navy-light:#1a3358;
  --blue:      #1e5eff;
  --blue-light:#3d76ff;
  --teal:      #00c9a7;
  --orange:    #ff6d2d;
  --orange-d:  #e55a1e;
  --white:     #ffffff;
  --off-white: #f7f9fc;
  --grey-100:  #eef1f6;
  --grey-200:  #dce1ea;
  --grey-400:  #8e99ad;
  --grey-600:  #4a5568;
  --ink:       #0a1628;

  /* Gradient definitions */
  --grad-logo:   linear-gradient(110deg, #00c9a7 0%, #1e5eff 40%, #a855f7 75%, #ff6d2d 100%);
  --grad-hero:   linear-gradient(135deg, #0a1628 0%, #0f2140 50%, #1a3358 100%);
  --grad-cta:    linear-gradient(135deg, #ff6d2d 0%, #ff9a5c 100%);
  --grad-blue:   linear-gradient(135deg, #1e5eff 0%, #00c9a7 100%);
  --grad-teal:   linear-gradient(135deg, #00c9a7 0%, #1e5eff 100%);
  --grad-purple: linear-gradient(135deg, #a855f7 0%, #1e5eff 100%);
  --grad-warm:   linear-gradient(135deg, #ff6d2d 0%, #a855f7 100%);
  --grad-green:  linear-gradient(135deg, #00c9a7 0%, #22d3ee 100%);

  /* Typography */
  --ff-head:  'Plus Jakarta Sans', sans-serif;
  --ff-body:  'Inter', sans-serif;

  /* Spacing */
  --r-sm:  8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 40px;
  --r-pill: 100px;

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(10,22,40,0.08);
  --shadow-md:   0 4px 20px rgba(10,22,40,0.12);
  --shadow-lg:   0 12px 48px rgba(10,22,40,0.18);
  --shadow-xl:   0 24px 80px rgba(10,22,40,0.22);
  --shadow-glow: 0 0 40px rgba(30,94,255,0.25);
  --shadow-teal: 0 0 40px rgba(0,201,167,0.2);
  --shadow-orange: 0 8px 32px rgba(255,109,45,0.35);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  font-size: 16px;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--ff-body); }
ul { list-style: none; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.wrap-wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.h1 { font-family: var(--ff-head); font-size: clamp(40px,6vw,72px); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; }
.h2 { font-family: var(--ff-head); font-size: clamp(28px,4vw,48px); font-weight: 800; line-height: 1.12; letter-spacing: -0.025em; }
.h3 { font-family: var(--ff-head); font-size: clamp(20px,2.5vw,28px); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
.h4 { font-family: var(--ff-head); font-size: 20px; font-weight: 700; line-height: 1.3; letter-spacing: -0.015em; }
.h5 { font-family: var(--ff-head); font-size: 16px; font-weight: 700; line-height: 1.4; }
.body-lg { font-size: 18px; line-height: 1.65; color: var(--grey-600); }
.body-md { font-size: 16px; line-height: 1.7; color: var(--grey-600); }
.body-sm { font-size: 14px; line-height: 1.6; color: var(--grey-400); }
.caption  { font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

/* Gradient text */
.grad-text {
  background: var(--grad-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-blue {
  background: var(--grad-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-teal {
  background: var(--grad-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.grad-text-warm {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Logo wordmark */
.logo-wordmark {
  font-family: var(--ff-head);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--grad-logo);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* ── NAV ─────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px;
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px;
}
.nav-logo-link { display: flex; align-items: center; }
.nav-links {
  display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center;
}
.nav-link {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.75);
  padding: 7px 14px; border-radius: var(--r-sm);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,0.08); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* Dropdown nav */
.nav-item { position: relative; }
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: all; }
.nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: -16px;
  background: var(--white); border-radius: var(--r-md);
  box-shadow: var(--shadow-xl); border: 1px solid var(--grey-100);
  padding: 8px; min-width: 220px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s cubic-bezier(0.22,0.61,0.36,1);
}
.nav-drop-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--r-sm);
  font-size: 14px; color: var(--grey-600); font-weight: 500;
  transition: background 0.12s, color 0.12s;
}
.nav-drop-item:hover { background: var(--off-white); color: var(--ink); }
.nav-drop-sep { height: 1px; background: var(--grey-100); margin: 4px 0; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); font-weight: 700;
  border: none; border-radius: var(--r-pill);
  cursor: pointer; transition: all 0.2s;
  white-space: nowrap; text-decoration: none;
}
.btn-lg { font-size: 16px; padding: 14px 28px; }
.btn-md { font-size: 14px; padding: 11px 22px; }
.btn-sm { font-size: 13px; padding: 8px 16px; }

.btn-orange {
  background: var(--grad-cta); color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,109,45,0.45); }

.btn-white {
  background: #fff; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline-white {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

.btn-ghost {
  background: transparent; color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-ghost:hover { background: var(--blue); color: #fff; }

.btn-navy {
  background: var(--navy); color: #fff;
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }

/* ── BADGES / TAGS ──────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-head); font-size: 12px; font-weight: 700;
  padding: 5px 12px; border-radius: var(--r-pill);
  letter-spacing: 0.02em;
}
.badge-orange { background: rgba(255,109,45,0.1); color: var(--orange); }
.badge-blue   { background: rgba(30,94,255,0.1); color: var(--blue); }
.badge-teal   { background: rgba(0,201,167,0.1); color: #00a37a; }
.badge-white  { background: rgba(255,255,255,0.12); color: #fff; }
.badge-purple { background: rgba(168,85,247,0.1); color: #a855f7; }
.badge-navy   { background: var(--navy); color: rgba(255,255,255,0.8); }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  background: var(--grad-hero);
  padding-top: 152px; padding-bottom: 100px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(30,94,255,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0,201,167,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 30% 30% at 60% 10%, rgba(168,85,247,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  position: relative; z-index: 1;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.7); letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-label-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 8px rgba(0,201,167,0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.4); }
}
.hero h1 { color: #fff; margin-bottom: 24px; }
.hero-desc { color: rgba(255,255,255,0.65); font-size: 18px; line-height: 1.7; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 52px; padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: var(--ff-head); font-size: 32px; font-weight: 800;
  color: #fff; line-height: 1;
}
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 4px; }
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}

/* ── HERO ICON (multi-color SVG style) ─────────────────────── */
.hero-icon-wrap {
  width: 480px; height: 480px; position: relative; flex-shrink: 0;
}
.hero-float-card {
  position: absolute; background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg); padding: 16px 20px;
  animation: float-card 6s ease-in-out infinite;
}
@keyframes float-card {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* ── SECTION BASE ─────────────────────────────────────────────── */
section { padding: 100px 0; }
.section-light { background: var(--white); }
.section-off   { background: var(--off-white); }
.section-navy  { background: var(--navy); }
.section-dark  { background: var(--navy-mid); }
.section-head  { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px;
}
.section-head .h2 { margin-bottom: 16px; }
.section-head .body-lg { color: var(--grey-600); }

/* ── CARDS ─────────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--r-xl);
  padding: 36px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-navy {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl); padding: 36px;
}
.card-glass {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl); padding: 36px;
}

/* ── ICON BOX ─────────────────────────────────────────────────── */
.icon-box {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.icon-box svg { width: 28px; height: 28px; }
.icon-box-blue   { background: linear-gradient(135deg,#1e5eff,#3d76ff); }
.icon-box-teal   { background: linear-gradient(135deg,#00c9a7,#22d3ee); }
.icon-box-orange { background: linear-gradient(135deg,#ff6d2d,#ff9a5c); }
.icon-box-purple { background: linear-gradient(135deg,#a855f7,#1e5eff); }
.icon-box-warm   { background: linear-gradient(135deg,#ff6d2d,#a855f7); }
.icon-box-green  { background: linear-gradient(135deg,#00c9a7,#22d3ee); }

/* ── STATS BAR ─────────────────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 48px 0;
}
.stats-bar-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0;
}
.stats-bar-item {
  text-align: center; padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stats-bar-item:last-child { border-right: none; }
.stats-bar-num {
  font-family: var(--ff-head); font-size: 44px; font-weight: 800;
  line-height: 1; letter-spacing: -0.03em; color: #fff; margin-bottom: 8px;
}
.stats-bar-label { font-size: 14px; color: rgba(255,255,255,0.5); }

/* ── FEATURE GRID ─────────────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feature-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.feature-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.feature-card { padding: 32px; border-radius: var(--r-xl); }
.feature-card h4 { font-family: var(--ff-head); margin: 16px 0 10px; color: var(--ink); }
.feature-card p { font-size: 14px; color: var(--grey-600); line-height: 1.65; }

/* ── PROCESS STEPS ─────────────────────────────────────────────── */
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-size: 18px; font-weight: 800; color: #fff;
  background: var(--grad-blue); flex-shrink: 0;
}

/* ── TABLE ─────────────────────────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  font-family: var(--ff-head); font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--grey-400); padding: 12px 16px; text-align: left;
  border-bottom: 1px solid var(--grey-100);
}
.data-table td {
  padding: 14px 16px; font-size: 14px; border-bottom: 1px solid var(--grey-100);
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--off-white); }

/* ── FORMS ─────────────────────────────────────────────────────── */
.input {
  width: 100%; padding: 13px 16px;
  font-family: var(--ff-body); font-size: 15px;
  background: var(--off-white); border: 1.5px solid var(--grey-200);
  border-radius: var(--r-md); color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s; outline: none;
}
.input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,94,255,0.1); }
.input-label {
  font-family: var(--ff-head); font-size: 13px; font-weight: 700;
  color: var(--ink); display: block; margin-bottom: 6px;
}
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%238e99ad' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }

/* ── SEARCH BAR ─────────────────────────────────────────────────── */
.search-bar {
  display: flex; align-items: center; gap: 0;
  background: var(--white); border: 1.5px solid var(--grey-200);
  border-radius: var(--r-pill); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: box-shadow 0.15s, border-color 0.15s;
}
.search-bar:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,94,255,0.1); }
.search-bar-icon { padding: 0 14px 0 18px; color: var(--grey-400); flex-shrink: 0; }
.search-bar input { flex: 1; border: none; outline: none; background: transparent; font-size: 15px; font-family: var(--ff-body); padding: 13px 0; color: var(--ink); }
.search-bar input::placeholder { color: var(--grey-400); }
.search-bar-btn { flex-shrink: 0; padding: 10px 20px; margin: 5px; border-radius: var(--r-pill); font-family: var(--ff-head); font-size: 14px; font-weight: 700; background: var(--blue); color: #fff; border: none; cursor: pointer; transition: background 0.15s; }
.search-bar-btn:hover { background: var(--blue-light); }

/* ── FILTER CHIPS ──────────────────────────────────────────────── */
.chip-bar { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.chip {
  padding: 7px 16px; border-radius: var(--r-pill);
  font-size: 13px; font-weight: 600; font-family: var(--ff-head);
  border: 1.5px solid var(--grey-200); color: var(--grey-600);
  cursor: pointer; transition: all 0.15s; background: var(--white);
}
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.chip-orange.active { background: var(--orange); border-color: var(--orange); }
.chip-teal.active   { background: var(--teal); border-color: var(--teal); color: #fff; }

/* ── TABS ─────────────────────────────────────────────────────── */
.tab-bar {
  display: flex; gap: 0; background: var(--off-white);
  border-radius: var(--r-pill); padding: 4px; width: fit-content;
}
.tab-btn {
  padding: 9px 22px; border-radius: var(--r-pill); border: none; background: transparent;
  font-family: var(--ff-head); font-size: 14px; font-weight: 600; color: var(--grey-400);
  cursor: pointer; transition: all 0.18s;
}
.tab-btn.active { background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── PROGRESS / SCORE ─────────────────────────────────────────── */
.progress-track { height: 8px; background: var(--grey-100); border-radius: var(--r-pill); overflow: hidden; }
.progress-fill  { height: 100%; border-radius: var(--r-pill); transition: width 1.2s cubic-bezier(0.22,0.61,0.36,1); width: 0; }
.score-pill {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-size: 13px; font-weight: 800;
  padding: 4px 12px; border-radius: var(--r-pill);
}
.score-high { background: rgba(0,201,167,0.12); color: #00a37a; }
.score-mid  { background: rgba(245,158,11,0.1); color: #b45309; }
.score-low  { background: rgba(239,68,68,0.1); color: #dc2626; }

/* ── SIDEBAR ─────────────────────────────────────────────────── */
.sidebar {
  width: 240px; flex-shrink: 0;
  background: var(--white); border-right: 1px solid var(--grey-100);
  padding: 28px 16px;
}
.sidebar-title { font-family: var(--ff-head); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-400); padding: 0 12px; margin-bottom: 8px; display: block; }
.sidebar-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: var(--r-md);
  font-size: 14px; font-weight: 500; color: var(--grey-600);
  cursor: pointer; transition: all 0.15s; border: none; background: transparent;
  width: 100%; text-align: left; text-decoration: none;
}
.sidebar-link:hover { background: var(--off-white); color: var(--ink); }
.sidebar-link.active { background: rgba(30,94,255,0.08); color: var(--blue); font-weight: 700; }
.sidebar-link svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── MODAL / DRAWER ──────────────────────────────────────────── */
.overlay {
  position: fixed; inset: 0; background: rgba(10,22,40,0.7);
  backdrop-filter: blur(6px); z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.25s;
}
.overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--white); border-radius: var(--r-xl);
  padding: 40px; max-width: 520px; width: calc(100% - 40px);
  max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.22,0.61,0.36,1);
}
.overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--grey-100); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--grey-600);
  transition: background 0.15s;
}
.modal-close:hover { background: var(--grey-200); }

/* Drawer (right side) */
.drawer {
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: 420px; background: var(--white);
  box-shadow: var(--shadow-xl); z-index: 2000;
  transition: right 0.35s cubic-bezier(0.22,0.61,0.36,1);
  overflow-y: auto; padding: 40px 32px;
}
.drawer.open { right: 0; }
.drawer-overlay {
  position: fixed; inset: 0; background: rgba(10,22,40,0.5);
  z-index: 1999; opacity: 0; visibility: hidden; transition: all 0.25s;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

/* ── NOTIFICATION TOAST ───────────────────────────────────────── */
.toast-wrap {
  position: fixed; bottom: 32px; right: 32px; z-index: 3000;
  display: flex; flex-direction: column; gap: 10px;
}
.toast {
  display: flex; align-items: center; gap: 12px;
  background: var(--navy); color: #fff;
  padding: 14px 20px; border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl); min-width: 280px;
  animation: toast-in 0.35s cubic-bezier(0.22,0.61,0.36,1) forwards;
}
@keyframes toast-in {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
.toast-icon { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }

/* ── FOOTER ─────────────────────────────────────────────────────── */
.footer { background: var(--navy); padding: 80px 0 40px; }
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 60px;
}
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 16px; max-width: 260px; }
.footer-col h6 { font-family: var(--ff-head); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col a  { display: block; font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px; color: rgba(255,255,255,0.35);
  flex-wrap: wrap; gap: 12px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.35); font-size: 13px; transition: color 0.15s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── TRUSTED BY LOGOS ─────────────────────────────────────────── */
.trust-strip { background: var(--off-white); padding: 40px 0; }
.trust-strip-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey-400); text-align: center; margin-bottom: 28px; }
.trust-logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-logo {
  font-family: var(--ff-head); font-size: 18px; font-weight: 800; letter-spacing: -0.03em;
  color: var(--grey-200); transition: color 0.2s;
}
.trust-logo:hover { color: var(--grey-400); }

/* ── KANBAN ───────────────────────────────────────────────────── */
.kanban { display: grid; grid-template-columns: repeat(5,1fr); gap: 12px; }
.kanban-col { background: var(--off-white); border-radius: var(--r-lg); padding: 16px; }
.kanban-col-header { font-family: var(--ff-head); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--grey-400); margin-bottom: 14px; display: flex; justify-content: space-between; align-items: center; }
.kanban-card {
  background: var(--white); border-radius: var(--r-md);
  padding: 14px; margin-bottom: 8px; border: 1.5px solid var(--grey-100);
  cursor: pointer; transition: box-shadow 0.15s, transform 0.15s;
  font-size: 13px;
}
.kanban-card:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }

/* ── CHART BARS ──────────────────────────────────────────────── */
.bar-chart { display: flex; flex-direction: column; gap: 14px; }
.bar-row { display: flex; align-items: center; gap: 14px; }
.bar-label { font-size: 13px; color: var(--grey-600); width: 120px; flex-shrink: 0; text-align: right; }
.bar-track { flex: 1; height: 28px; background: var(--grey-100); border-radius: var(--r-sm); overflow: hidden; }
.bar-fill {
  height: 100%; border-radius: var(--r-sm);
  display: flex; align-items: center; padding-left: 10px;
  font-family: var(--ff-head); font-size: 12px; font-weight: 700; color: #fff;
  transition: width 1.4s cubic-bezier(0.22,0.61,0.36,1); width: 0;
}
.bar-val { font-family: var(--ff-head); font-size: 13px; font-weight: 700; width: 80px; flex-shrink: 0; }

/* ── DOT ─────────────────────────────────────────────────────── */
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.dot-blue   { background: var(--blue); }
.dot-teal   { background: var(--teal); }
.dot-orange { background: var(--orange); }
.dot-purple { background: #a855f7; }

/* ── TOGGLE ─────────────────────────────────────────────────── */
.toggle { width: 44px; height: 24px; border-radius: 24px; position: relative; cursor: pointer; transition: background 0.2s; flex-shrink: 0; border: none; }
.toggle.on  { background: var(--blue); }
.toggle.off { background: var(--grey-200); }
.toggle::after { content: ''; position: absolute; top: 2px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: left 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.2); }
.toggle.on::after  { left: 22px; }
.toggle.off::after { left: 2px; }

/* ── PAGE LAYOUT ─────────────────────────────────────────────── */
.page-with-sidebar {
  display: grid; grid-template-columns: 240px 1fr;
  min-height: calc(100vh - 72px);
  margin-top: 72px;
}
.page-main { padding: 40px; background: var(--off-white); }

/* ── SPARKLINES ──────────────────────────────────────────────── */
.sparkline { display: flex; align-items: flex-end; gap: 3px; height: 36px; }
.spark-bar { flex: 1; border-radius: 2px 2px 0 0; min-width: 5px; }

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-up { animation: fadeUp 0.6s cubic-bezier(0.22,0.61,0.36,1) forwards; opacity: 0; }
.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.2s; }
.fade-up-d3 { animation-delay: 0.3s; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s cubic-bezier(0.22,0.61,0.36,1), transform 0.65s cubic-bezier(0.22,0.61,0.36,1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .wrap, .wrap-wide { padding: 0 20px; }
  section { padding: 64px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid-4 { grid-template-columns: 1fr; }
  .page-with-sidebar { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .kanban { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}

/* ── UTILS ───────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-white  { color: #fff; }
.text-navy   { color: var(--navy); }
.text-blue   { color: var(--blue); }
.text-teal   { color: var(--teal); }
.text-orange { color: var(--orange); }
.text-muted  { color: var(--grey-400); }
.flex        { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.items-center{ align-items: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mb-8   { margin-bottom: 8px; }
.mb-12  { margin-bottom: 12px; }
.mb-16  { margin-bottom: 16px; }
.mb-24  { margin-bottom: 24px; }
.mb-32  { margin-bottom: 32px; }
.mb-48  { margin-bottom: 48px; }
.mt-auto{ margin-top: auto; }
.w-full { width: 100%; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
