/* ============================================
   Pace — Sales Toolkit · Shared Theme
   ============================================ */

:root {
  --bg: #FDF4ED;
  --bg-2: #FAEBE0;
  --card: #FFFFFF;
  --teal: #1F5258;
  --teal-dark: #163E43;
  --teal-light: #2C7178;
  --orange: #E87543;
  --orange-light: #ED9B5A;
  --orange-soft: #FCE9DA;
  --yellow: #F4C84A;
  --text: #1A1A1A;
  --text-muted: #6B6B6B;
  --border: #EFE4D7;
  --gray-row: #F5EFE7;
  --green: #2E7D5B;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Decorative dot pattern accent (top-right) */
body::before {
  content: '';
  position: fixed;
  top: 0; right: 0;
  width: 480px; height: 320px;
  background-image: radial-gradient(circle, var(--orange-light) 1.2px, transparent 1.2px);
  background-size: 14px 14px;
  opacity: 0.18;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom left, rgba(0,0,0,0.7), transparent);
          mask-image: linear-gradient(to bottom left, rgba(0,0,0,0.7), transparent);
  z-index: 0;
}

/* ============================================
   Top Nav
   ============================================ */
.site-nav {
  position: sticky;
  top: 0;
  background: rgba(253, 244, 237, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
}
/* nonstatic.education wordmark — pure CSS (works without an image file) */
.ns-wordmark {
  font-family: 'Manrope', system-ui, sans-serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.025em;
  color: #1A1A1A;
  line-height: 1;
  white-space: nowrap;
}
.ns-i {
  position: relative;
  display: inline-block;
  font-style: normal;
}
.ns-dot {
  position: absolute;
  top: -0.36em;
  left: 50%;
  transform: translateX(-50%);
  width: 0.36em;
  height: 0.36em;
  background: var(--orange);
  border-radius: 50%;
}
/* Optional: when you have a PNG file (nonstatic.png), use .brand-img instead */
.brand-img {
  display: block;
  height: 28px;
  width: auto;
  object-fit: contain;
}

.currency-picker {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 5px 6px 5px 12px;
}
.currency-picker label {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.currency-picker select {
  border: none;
  background: transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 4px 6px;
  cursor: pointer;
  color: var(--text);
}
.currency-picker select:focus { outline: none; }

/* ============================================
   Layout helpers
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 60px;
  position: relative;
  z-index: 1;
}
.container.narrow { max-width: 880px; }

.eyebrow {
  font-size: 12px;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

h1.page-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
h1.page-title .thin { font-weight: 400; }
h1.page-title .grad {
  background: linear-gradient(135deg, var(--teal) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

p.lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.55;
}

/* ============================================
   Cards (used across pages)
   ============================================ */
.card {
  background: var(--card);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.section-divider {
  margin: 48px 0;
  border: none;
  border-top: 1px solid var(--border);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: all 0.15s;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232,117,67,0.3);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(232,117,67,0.4); }
.btn-secondary {
  background: var(--teal);
  color: #fff;
}
.btn-secondary:hover { background: var(--teal-dark); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { background: var(--card); border-color: var(--orange-light); }

/* ============================================
   Partner / client logo strip (shared)
   ============================================ */
.partner-strip {
  margin-top: 50px;
  padding: 20px 0 0;
  background: transparent;
  border: none;
  text-align: center;
}
.partner-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}
.partner-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px 36px;
  filter: grayscale(1);
  opacity: 0.55;
  transition: opacity 0.2s;
}
.partner-row:hover { opacity: 0.75; }
.partner-row img {
  height: 48px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
}
@media (max-width: 760px) {
  .partner-row { justify-content: center; gap: 22px 28px; }
  .partner-row img { height: 38px; max-width: 120px; }
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  margin-top: 60px;
  padding: 28px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  background: rgba(255,255,255,0.4);
}

/* ============================================
   Mobile
   ============================================ */
@media (max-width: 880px) {
  .ns-wordmark { font-size: 20px; }
  .brand-img { height: 24px; }
  h1.page-title { font-size: 38px; }
  .currency-picker label { display: none; }
  .container { padding: 32px 16px 40px; }
}
@media (max-width: 480px) {
  .ns-wordmark { font-size: 17px; }
  .brand-img { height: 20px; }
  .nav-inner { padding: 12px 14px; }
}
