/* -----------------------------------------------------------
   Driver Watchdog  -  Public Marketing CSS
   Fonts: Plus Jakarta Sans (headlines) + Barlow (body) + Inter (UI)
   Palette: Deep navy dark, electric blue primary, sharp white
   Aesthetic: Bold, editorial, utilitarian-tough
   ----------------------------------------------------------- */

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

:root {
  --pub-primary:     #0F2AF6;
  --pub-secondary:   #0BA8ED;/* -----------------------------------------------------------
   Driver Watchdog  -  Public Marketing CSS
   Fonts: Plus Jakarta Sans (headlines) + Barlow (body) + Inter (UI)
   Palette: Deep navy dark, electric blue primary, sharp white
   Aesthetic: Bold, editorial, utilitarian-tough
   ----------------------------------------------------------- */

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

:root {
  --pub-primary:     #0F2AF6;
  --pub-secondary:   #0BA8ED;
  --pub-grad:        linear-gradient(135deg, #0F2AF6, #0BA8ED);
  --pub-dark:        #060e24;
  --pub-navy:        #080f2a;
  --pub-ink:         #050c1f;

  --pub-text:        #0d1730;
  --pub-muted:       #5a6a8a;
  --pub-dim:         #374263;
  --pub-light:       #f4f7ff;
  --pub-card:        #ffffff;
  --pub-line:        #e0e8f8;

  --pub-success:     #12b76a;
  --pub-danger:      #ef4444;
  --pub-warning:     #f79009;
  --pub-purple:      #7c3aed;

  --pub-radius:      20px;
  --pub-radius-sm:   12px;
  --pub-radius-pill: 999px;

  --pub-shadow:      0 24px 64px rgba(15,42,246,.12);
  --pub-shadow-lg:   0 40px 100px rgba(15,42,246,.18);

  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: #fff;
  color: var(--pub-text);
  line-height: 1.6;
  overflow-x: hidden;
}
.fa, .fa-solid, .fas, .fa-regular, .far {
  font-family: "Font Awesome 6 Free" !important;
}
.fa-solid, .fas {
  font-weight: 900 !important;
}
.fa-regular, .far {
  font-weight: 400 !important;
}
.fa-brands, .fab {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* -- Container --------------------------------------------- */
.pub-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* -- Logo -------------------------------------------------- */
.pub-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/* Full horizontal lockup (Regular)  -  used in nav, auth, footer on light bg */
.logo-full {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  /* Logo already has brand blue - display as-is on white/light backgrounds */
}

/* Full lockup on dark/navy backgrounds  -  white version */
.logo-full-white {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

/* Icon only (dw_icon.png)  -  sidebar, favicon contexts */
.logo-icon-img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 12px;
}

/* CTA / hero large logo */
.logo-hero {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Footer logo */
.logo-footer {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
  display: block;
}

/* Auth card logo */
.logo-auth {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Fallback text mark if image fails */
.logo-mark {
  width: 44px; height: 44px;
  background: var(--pub-grad);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: .5px;
  flex-shrink: 0;
}
.logo-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-fallback span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--pub-text);
  letter-spacing: -.02em;
}

/* -- Buttons ----------------------------------------------- */
.pub-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pub-grad);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--pub-radius-pill);
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 16px 40px rgba(15,42,246,.28);
  white-space: nowrap;
}
.pub-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 50px rgba(15,42,246,.36); }

.pub-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--pub-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--pub-radius-pill);
  border: 2px solid var(--pub-primary);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.pub-btn-outline:hover { background: var(--pub-primary); color: #fff; }

.pub-btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--pub-dim);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: var(--pub-radius-pill);
  transition: color .2s;
}
.pub-btn-ghost:hover { color: var(--pub-primary); }

.pub-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--pub-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: var(--pub-radius-pill);
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 16px 48px rgba(0,0,0,.2);
}
.pub-btn-white:hover { transform: translateY(-2px); box-shadow: 0 24px 60px rgba(0,0,0,.28); }

.pub-btn-lg { padding: 16px 32px; font-size: 16px; }
.pub-btn-full { width: 100%; justify-content: center; }

/* -- Nav --------------------------------------------------- */
.pub-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--pub-line);
  height: var(--nav-h);
}
.pub-nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}
.pub-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  margin-left: 16px;
}
.pub-nav-links a {
  font-weight: 700;
  font-size: 15px;
  color: var(--pub-dim);
  padding: 8px 14px;
  border-radius: var(--pub-radius-pill);
  transition: all .2s;
}
.pub-nav-links a:hover { color: var(--pub-primary); background: var(--pub-light); }
.pub-nav-links a.active {
  color: var(--pub-primary);
  background: var(--pub-light);
  font-weight: 800;
}
.pub-nav-actions { display: flex; align-items: center; gap: 10px; }

.pub-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  z-index: 310;
  position: relative;
}
.pub-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--pub-text);
  border-radius: 2px;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  transform-origin: center;
}
.pub-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.pub-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.pub-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Overlay backdrop */
.pub-mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,14,36,.6);
  backdrop-filter: blur(4px);
  z-index: 290;
  opacity: 0;
  transition: opacity .3s ease;
}
.pub-mobile-backdrop.open { display: block; opacity: 1; }

/* Slide-in drawer */
.pub-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(380px, 90vw);
  height: 100vh;
  height: 100dvh;
  background: #fff;
  z-index: 300;
  display: flex;
  flex-direction: column;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -20px 0 80px rgba(15,42,246,.15);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-bottom: env(safe-area-inset-bottom);
}
.pub-mobile-menu.open { right: 0; }

.pub-mobile-menu-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--pub-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pub-mobile-menu-header img {
  height: 36px;
  width: auto;
}
.pub-mobile-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--pub-line);
  background: var(--pub-light);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--pub-dim);
  transition: all .2s;
}
.pub-mobile-close:hover { background: var(--pub-line); }

.pub-mobile-nav {
  padding: 16px 0;
  flex: 1 0 auto;
}
.pub-mobile-nav-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--pub-muted);
  padding: 12px 24px 6px;
}
.pub-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 16px;
  color: var(--pub-dim);
  padding: 14px 24px;
  border-bottom: 1px solid rgba(0,0,0,.04);
  transition: all .2s;
  text-decoration: none;
}
.pub-mobile-menu a:hover { color: var(--pub-primary); background: var(--pub-light); }
.pub-mobile-menu a .menu-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--pub-light);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}
.pub-mobile-menu a:hover .menu-icon { background: rgba(15,42,246,.1); }

.pub-mobile-menu-footer {
  padding: 20px 24px;
  padding-bottom: calc(28px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--pub-line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pub-mobile-menu-footer .pub-btn-primary,
.pub-mobile-menu-footer .pub-btn-outline {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
}

/* End-of-file overrides: keep mobile nav scrollable and icon fonts local. */
.fa, .fa-solid, .fas, .fa-regular, .far { font-family: "Font Awesome 6 Free" !important; }
.fa-solid, .fas { font-weight: 900 !important; }
.fa-regular, .far { font-weight: 400 !important; }
.fa-brands, .fab { font-family: "Font Awesome 6 Brands" !important; font-weight: 400 !important; }
.pub-mobile-menu {
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-bottom: env(safe-area-inset-bottom);
}
.pub-mobile-nav { flex: 1 0 auto; }
.pub-mobile-menu-footer { padding-bottom: calc(28px + env(safe-area-inset-bottom)); }

/* Final mobile drawer/font overrides for duplicated public CSS blocks. */
.fa, .fa-solid, .fas, .fa-regular, .far { font-family: "Font Awesome 6 Free" !important; }
.fa-solid, .fas { font-weight: 900 !important; }
.fa-regular, .far { font-weight: 400 !important; }
.fa-brands, .fab { font-family: "Font Awesome 6 Brands" !important; font-weight: 400 !important; }
.pub-mobile-menu {
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-bottom: env(safe-area-inset-bottom);
}
.pub-mobile-nav { flex: 1 0 auto; }
.pub-mobile-menu-footer { padding-bottom: calc(28px + env(safe-area-inset-bottom)); }

/* -- Hero -------------------------------------------------- */
.hero-section {
  background: var(--pub-dark);
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 60px) 0 0;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,42,246,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,42,246,.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,.6) 30%, rgba(0,0,0,.4) 70%, transparent);
}
.hero-bg-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(11,168,237,.18) 0%, rgba(15,42,246,.12) 40%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding-bottom: 60px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11,168,237,.14);
  border: 1px solid rgba(11,168,237,.3);
  color: #7dd3f8;
  font-weight: 700;
  font-size: 13px;
  padding: 7px 16px;
  border-radius: var(--pub-radius-pill);
  margin-bottom: 28px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--pub-secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}
.hero-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  background: linear-gradient(135deg, #0BA8ED, #4dd4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 19px;
  color: #94a8cc;
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 36px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.trust-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.03em;
}
.trust-label {
  font-size: 12px;
  color: #6b80a8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.12);
}

/* Dashboard mock */
.hero-dashboard-preview {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  padding-bottom: 0;
}
.dashboard-mock {
  background: #111827;
  border-radius: 16px 16px 0 0;
  border: 1px solid rgba(255,255,255,.1);
  border-bottom: none;
  overflow: hidden;
  box-shadow: 0 -20px 60px rgba(15,42,246,.2);
  max-width: 920px;
  margin: 0 auto;
}
.mock-topbar {
  background: #1f2937;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots i {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: block;
}
.mock-dots i:nth-child(1) { background: #ef4444; }
.mock-dots i:nth-child(2) { background: #f59e0b; }
.mock-dots i:nth-child(3) { background: #22c55e; }
.mock-url {
  font-family: 'Plus Jakarta Sans', monospace;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.06);
  padding: 4px 12px;
  border-radius: 6px;
}
.mock-body { display: flex; min-height: 280px; }
.mock-sidebar {
  width: 200px;
  background: #0c1220;
  padding: 16px 0;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,.06);
}
.mock-nav-item {
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  cursor: default;
}
.mock-nav-item.active { color: #fff; background: rgba(15,42,246,.3); border-left: 3px solid #0BA8ED; }
.mock-content { flex: 1; padding: 16px; }
.mock-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
  margin-bottom: 12px;
}
.mock-stat {
  background: rgba(255,255,255,.05);
  border-radius: 10px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.07);
}
.mock-stat.green { border-color: rgba(18,183,106,.3); }
.mock-stat.red   { border-color: rgba(239,68,68,.3); }
.mock-stat.orange{ border-color: rgba(247,144,9,.3); }
.mock-stat.blue  { border-color: rgba(11,168,237,.3); }
.ms-val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 900; color: #fff; }
.ms-label { font-size: 10px; color: rgba(255,255,255,.4); font-weight: 600; text-transform: uppercase; }
.mock-alert {
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.2);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.mock-alert.blue { background: rgba(15,42,246,.1); border-color: rgba(11,168,237,.2); }
.mock-alert strong { color: #fff; }
.mock-alert-icon { flex-shrink: 0; }

/* -- Problem Section --------------------------------------- */
.problem-section {
  background: var(--pub-light);
  padding: 80px 0;
  border-bottom: 1px solid var(--pub-line);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.problem-card {
  background: #fff;
  border: 1px solid var(--pub-line);
  border-radius: var(--pub-radius);
  padding: 32px;
  box-shadow: 0 8px 24px rgba(15,42,246,.06);
}
.problem-icon { font-size: 36px; margin-bottom: 16px; }
.problem-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.problem-card p { font-size: 15px; color: var(--pub-muted); line-height: 1.65; }

/* -- Features Section -------------------------------------- */
.features-section { padding: 100px 0; background: #fff; }
.section-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--pub-primary);
  margin-bottom: 14px;
}
.section-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 52px;
  color: var(--pub-text);
}
.features-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.feature-card {
  background: var(--pub-light);
  border: 1px solid var(--pub-line);
  border-radius: var(--pub-radius);
  padding: 36px;
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--pub-shadow); }
.feature-card--large { grid-row: span 2; }
.feature-tag {
  display: inline-block;
  background: rgba(15,42,246,.1);
  color: var(--pub-primary);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 10px;
  border-radius: var(--pub-radius-pill);
  margin-bottom: 16px;
}
.feature-tag--red    { background: rgba(239,68,68,.1);  color: #dc2626; }
.feature-tag--orange { background: rgba(247,144,9,.1);  color: #b45309; }
.feature-tag--purple { background: rgba(124,58,237,.1); color: #7c3aed; }
.feature-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.feature-card p { font-size: 15px; color: var(--pub-muted); line-height: 1.7; margin-bottom: 20px; }
.feature-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.feature-highlights span {
  background: rgba(15,42,246,.08);
  color: var(--pub-primary);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--pub-radius-pill);
}

/* -- Proof Section ----------------------------------------- */
.proof-section {
  background: var(--pub-dark);
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.proof-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  color: rgba(255,255,255,.5);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 48px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.proof-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--pub-radius);
  padding: 36px;
}
.proof-icon { font-size: 32px; margin-bottom: 16px; }
.proof-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.proof-card p { font-size: 15px; color: #7a8fb5; line-height: 1.65; }

/* -- Pricing Preview --------------------------------------- */
.pricing-preview-section { background: var(--pub-light); padding: 100px 0; }
.pricing-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.pp-card {
  background: #fff;
  border: 1px solid var(--pub-line);
  border-radius: var(--pub-radius);
  padding: 32px 24px;
  position: relative;
  box-shadow: 0 8px 24px rgba(15,42,246,.05);
}
.pp-card--featured {
  border-color: var(--pub-primary);
  border-width: 2px;
  box-shadow: var(--pub-shadow);
  transform: translateY(-8px);
}
.pp-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pub-grad);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 14px;
  border-radius: var(--pub-radius-pill);
  white-space: nowrap;
}
.pp-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--pub-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.pp-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--pub-text);
  line-height: 1;
  margin-bottom: 4px;
}
.pp-sub {
  font-size: 13px;
  color: var(--pub-muted);
  font-weight: 600;
  margin-bottom: 24px;
}
.pp-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pub-dim);
}
.pp-features li.dim { color: #b0baca; }

/* -- Final CTA --------------------------------------------- */
.final-cta-section { background: var(--pub-dark); padding: 100px 0; }
.final-cta-inner {
  background: linear-gradient(135deg, #0a1a4a, #0f2a73);
  border: 1px solid rgba(11,168,237,.2);
  border-radius: 32px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(15,42,246,.3);
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(11,168,237,.2), transparent 60%);
  pointer-events: none;
}
.cta-logo { height: 48px; margin-bottom: 24px; position: relative; z-index: 1; }
.final-cta-inner h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.final-cta-inner p {
  font-size: 18px;
  color: #8aa3cc;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.pub-btn-white { position: relative; z-index: 1; }

/* -- Footer ------------------------------------------------ */
.pub-footer { background: var(--pub-ink); padding: 72px 0 0; }
.pub-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.pub-footer-brand p {
  font-size: 14px;
  color: #5a6e92;
  line-height: 1.7;
  max-width: 280px;
}
.pub-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #8aa3cc;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: #5a6e92;
  font-weight: 600;
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.pub-footer-bottom {
  padding: 20px 0;
  display: flex;
}
.pub-footer-bottom .pub-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #3a4d6b;
  font-weight: 600;
  width: 100%;
}

/* -- Responsive -------------------------------------------- */
@media (max-width: 960px) {
  .pub-nav-links, .pub-nav-actions { display: none; }
  .pub-hamburger { display: flex; }
  .problem-grid  { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-row: span 1; }
  .proof-grid    { grid-template-columns: 1fr; }
  .pricing-preview-grid { grid-template-columns: repeat(2,1fr); }
  .pp-card--featured { transform: none; }
  .pub-footer-inner { grid-template-columns: 1fr; }
  .pub-footer-links { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .hero-actions { flex-direction: column; align-items: stretch; text-align: center; }
  .hero-trust { gap: 0; }
  .trust-item { padding: 0 14px; }
  .mock-sidebar { display: none; }
  .mock-stats { grid-template-columns: repeat(2,1fr); }
  .pricing-preview-grid { grid-template-columns: 1fr; }
  .final-cta-inner { padding: 48px 24px; }
  .pub-footer-bottom .pub-container { flex-direction: column; gap: 6px; text-align: center; }
}

/* -- Footer tagline ---------------------------------------- */
.footer-tagline {
  font-size: 13px;
  color: #4a5e82;
  font-weight: 700;
  margin-top: 14px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-tagline i { color: var(--pub-secondary); margin-right: 5px; }
.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col a i { color: #3a4d6b; transition: color .2s; font-size: 12px; }
.footer-col a:hover i { color: var(--pub-secondary); }

/* -- Page hero (inner pages) ------------------------------- */
.page-hero {
  background: linear-gradient(135deg, #060e24 0%, #0d1f5e 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(11,168,237,.15);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(11,168,237,.14), transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(15,42,246,.1), transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; text-align: center; }
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11,168,237,.14);
  border: 1px solid rgba(11,168,237,.3);
  color: #7dd3f8;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: var(--pub-radius-pill);
  margin-bottom: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -.04em;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.6);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 500;
}

/* -- Content sections -------------------------------------- */
.content-section { padding: 80px 0; }
.content-section.bg-light { background: var(--pub-light); }
.content-section.bg-dark  { background: var(--pub-dark); }
.content-section.bg-white { background: #fff; }

/* -----------------------------------------------------------
   Inner Pages  -  Features, Pricing, About, Shop, Contact, Legal
   ----------------------------------------------------------- */

/* -- Features Page ----------------------------------------- */
.feat-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feat-detail-grid--reverse { direction: rtl; }
.feat-detail-grid--reverse > * { direction: ltr; }

.feat-detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(15,42,246,.08);
  color: var(--pub-primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 12px;
  border-radius: var(--pub-radius-pill);
  margin-bottom: 16px;
}
.feat-detail-tag--red    { background: rgba(239,68,68,.08); color: #dc2626; }
.feat-detail-tag--orange { background: rgba(247,144,9,.08); color: #b45309; }
.feat-detail-tag--purple { background: rgba(124,58,237,.08); color: #7c3aed; }

.feat-detail-text h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -.04em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.feat-detail-text p { font-size: 16px; color: var(--pub-muted); line-height: 1.75; margin-bottom: 20px; font-weight: 500; }

.feat-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--pub-dim);
}
.feat-list li i { color: var(--pub-primary); margin-top: 2px; flex-shrink: 0; }

/* Feature mock UI */
.feat-mock {
  background: #fff;
  border: 1px solid var(--pub-line);
  border-radius: var(--pub-radius);
  box-shadow: var(--pub-shadow);
  overflow: hidden;
}
.feat-mock-header {
  background: var(--pub-light);
  border-bottom: 1px solid var(--pub-line);
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 800;
  color: var(--pub-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.feat-mock-header.red    { color: #dc2626; background: rgba(239,68,68,.05); }
.feat-mock-header.orange { color: #b45309; background: rgba(247,144,9,.05); }
.feat-mock-header.purple { color: #7c3aed; background: rgba(124,58,237,.05); }
.feat-mock-body { padding: 16px; }
.feat-mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 4px;
  background: var(--pub-light);
}
.feat-mock-row.alert-row { background: rgba(239,68,68,.06); }
.feat-mock-row .green { color: var(--pub-success); }
.feat-mock-row .red   { color: var(--pub-danger); }
.feat-mock-discrepancy {
  margin-top: 10px;
  padding: 10px 14px;
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.2);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #dc2626;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feat-mock-discrepancy.purple { background: rgba(124,58,237,.08); border-color: rgba(124,58,237,.2); color: #7c3aed; }
.feat-mock-stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 12px; }
.fms { background: var(--pub-light); border-radius: 10px; padding: 10px; text-align: center; }
.fms-val { font-size: 20px; font-weight: 900; letter-spacing: -.03em; }
.fms-val.red  { color: var(--pub-danger); }
.fms-val.blue { color: var(--pub-primary); }
.fms-label { font-size: 10px; color: var(--pub-muted); font-weight: 700; text-transform: uppercase; }
.feat-mock-alert {
  padding: 9px 12px;
  background: rgba(239,68,68,.06);
  border: 1px solid rgba(239,68,68,.15);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--pub-dim);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.feat-mock-alert i { color: var(--pub-danger); }
.feat-report-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--pub-line);
  font-size: 13px;
}
.feat-report-item:last-child { border-bottom: none; }
.feat-report-item > i { font-size: 22px; color: var(--pub-danger); flex-shrink: 0; }
.feat-report-item strong { display: block; font-weight: 700; color: var(--pub-text); }
.feat-report-item span   { font-size: 11px; color: var(--pub-muted); }
.feat-mock-dl { margin-left: auto; color: var(--pub-primary); font-size: 16px; }

.all-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.all-feat-card {
  background: #fff;
  border: 1px solid var(--pub-line);
  border-radius: var(--pub-radius-sm);
  padding: 20px 16px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.all-feat-card:hover { transform: translateY(-3px); box-shadow: var(--pub-shadow); }
.all-feat-icon { font-size: 24px; color: var(--pub-primary); margin-bottom: 10px; }
.all-feat-label { font-size: 13px; font-weight: 700; color: var(--pub-dim); margin-bottom: 8px; }
.all-feat-tier {
  font-size: 10px; font-weight: 800;
  padding: 3px 8px; border-radius: var(--pub-radius-pill);
  text-transform: uppercase; letter-spacing: .06em;
}
.tag-all    { background: var(--pub-light);              color: var(--pub-primary); }
.tag-driver { background: rgba(18,183,106,.1);           color: #065f46; }
.tag-pro    { background: rgba(15,42,246,.1);            color: var(--pub-primary); }
.tag-elite  { background: rgba(124,58,237,.1);           color: #7c3aed; }

/* -- Pricing Page ------------------------------------------ */
.billing-toggle {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--pub-line);
  border-radius: var(--pub-radius-pill);
  padding: 4px;
  gap: 2px;
  box-shadow: var(--pub-shadow-sm);
}
.btog-btn {
  padding: 10px 24px;
  border-radius: var(--pub-radius-pill);
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  color: var(--pub-muted);
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btog-btn.active { background: var(--pub-primary-grad, var(--pub-grad, #0F2AF6)); color: #fff; box-shadow: 0 4px 14px rgba(15,42,246,.25); }
.btog-save {
  background: rgba(18,183,106,.15);
  color: #065f46;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--pub-radius-pill);
}
.btog-btn.active .btog-save { background: rgba(255,255,255,.2); color: #fff; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--pub-line);
  border-radius: var(--pub-radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(15,42,246,.05);
  transition: transform .2s, box-shadow .2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--pub-shadow); }
.pricing-card--featured {
  border-color: var(--pub-primary);
  border-width: 2px;
  box-shadow: var(--pub-shadow);
  transform: translateY(-8px);
}
.pricing-card--featured:hover { transform: translateY(-12px); }
.pricing-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0F2AF6, #0BA8ED);
  color: #fff;
  font-size: 11px; font-weight: 800;
  padding: 4px 14px;
  border-radius: 0 0 10px 10px;
  white-space: nowrap;
  letter-spacing: .04em;
}
.pricing-card-header { padding: 28px 22px 20px; border-bottom: 1px solid var(--pub-line); }
.plan-name {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 12px;
}
.plan-primary { color: var(--pub-primary); }
.plan-blue    { color: #0284c7; }
.plan-muted   { color: var(--pub-muted); }
.plan-dark    { color: var(--pub-dark); }

.price-amt { font-size: 42px; font-weight: 900; letter-spacing: -.06em; color: var(--pub-text); font-family: 'JetBrains Mono', monospace; }
.price-period { font-size: 14px; color: var(--pub-muted); font-weight: 600; margin-left: 2px; }
.price-annual-note { font-size: 12px; color: var(--pub-muted); font-weight: 600; margin-top: 2px; }
.plan-desc { font-size: 13px; color: var(--pub-muted); font-weight: 500; margin-top: 10px; line-height: 1.55; }

.plan-features {
  list-style: none;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-weight: 600;
  color: var(--pub-dim);
  line-height: 1.4;
}
.plan-features li.excluded { color: #b0baca; }
.plan-features li i { margin-top: 1px; flex-shrink: 0; }
.plan-features li.included i { color: var(--pub-primary); }
.plan-features li.excluded i { color: #d0d9ee; }

.pricing-card-footer { padding: 16px 22px 22px; }
.plan-trial-note { text-align: center; font-size: 11px; color: var(--pub-muted); margin-top: 10px; font-weight: 600; }
.plan-trial-note i { color: var(--pub-primary); }

.pub-btn-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--pub-dark); color: #fff;
  font-weight: 800; font-size: 14px; padding: 13px 20px;
  border-radius: var(--pub-radius-pill); border: none; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: transform .2s;
  text-decoration: none; white-space: nowrap;
}
.pub-btn-dark:hover { transform: translateY(-2px); }
.pub-btn-dark.pub-btn-full { width: 100%; }

.faq-grid { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--pub-line); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 0; font-size: 16px; font-weight: 700; color: var(--pub-text);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: color .2s;
}
.faq-question:hover { color: var(--pub-primary); }
.faq-question.open { color: var(--pub-primary); }
.faq-chevron { transition: transform .3s; font-size: 13px; color: var(--pub-muted); flex-shrink: 0; }
.faq-question.open .faq-chevron { transform: rotate(180deg); color: var(--pub-primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer.open { max-height: 300px; }
.faq-answer p { padding: 0 0 20px; font-size: 15px; color: var(--pub-muted); line-height: 1.75; font-weight: 500; }

/* -- About Page -------------------------------------------- */
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.mission-statement h2 { margin-bottom: 20px; }
.mission-statement p { font-size: 16px; color: var(--pub-muted); line-height: 1.8; margin-bottom: 16px; font-weight: 500; }
.mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mission-stat {
  background: var(--pub-light);
  border: 1px solid var(--pub-line);
  border-radius: var(--pub-radius);
  padding: 24px;
  text-align: center;
}
.ms-num { font-size: 42px; font-weight: 900; letter-spacing: -.05em; color: var(--pub-primary); font-family: 'JetBrains Mono', monospace; }
.ms-label { font-size: 13px; color: var(--pub-muted); font-weight: 600; margin-top: 4px; }

.why-blocks { display: flex; flex-direction: column; gap: 28px; }
.why-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-icon {
  width: 52px; height: 52px;
  background: var(--pub-light);
  border: 1px solid var(--pub-line);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--pub-primary);
  flex-shrink: 0;
}
.why-block h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; letter-spacing: -.02em; }
.why-block p  { font-size: 15px; color: var(--pub-muted); line-height: 1.7; font-weight: 500; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--pub-light);
  border: 1px solid var(--pub-line);
  border-radius: var(--pub-radius);
  padding: 32px;
}
.value-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #0F2AF6, #0BA8ED);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #fff;
  margin-bottom: 16px;
}
.value-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; letter-spacing: -.02em; }
.value-card p  { font-size: 15px; color: var(--pub-muted); line-height: 1.7; font-weight: 500; }

.built-by-section { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.built-by-text h2 { font-size: 36px; font-weight: 900; letter-spacing: -.04em; margin-bottom: 20px; }
.built-by-text p  { font-size: 16px; color: var(--pub-muted); line-height: 1.8; margin-bottom: 16px; font-weight: 500; }
.location-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--pub-line);
  border-radius: var(--pub-radius-sm);
  padding: 18px 20px;
  margin-bottom: 12px;
}
.location-card > i { font-size: 22px; color: var(--pub-primary); width: 28px; text-align: center; }
.location-card strong { display: block; font-weight: 800; font-size: 14px; }
.location-card span, .location-card a { font-size: 13px; color: var(--pub-muted); font-weight: 500; }

/* -- Shop Page --------------------------------------------- */
.shop-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pub-dim);
  background: rgba(15,42,246,.05);
  border: 1px solid rgba(15,42,246,.12);
  border-radius: var(--pub-radius-sm);
  padding: 12px 16px;
}
.shop-notice i { color: var(--pub-primary); font-size: 16px; }
.shop-notice a { margin-left: auto; flex-shrink: 0; }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.shop-card {
  background: #fff;
  border: 1px solid var(--pub-line);
  border-radius: var(--pub-radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(15,42,246,.05);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.shop-card:hover { transform: translateY(-4px); box-shadow: var(--pub-shadow); }
.shop-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: linear-gradient(135deg, #0F2AF6, #0BA8ED);
  color: #fff;
  font-size: 10px; font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--pub-radius-pill);
  text-transform: uppercase; letter-spacing: .06em;
}
.shop-card-icon {
  background: var(--pub-light);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: var(--pub-primary);
  border-bottom: 1px solid var(--pub-line);
}
.shop-card-icon.digital { background: rgba(124,58,237,.06); color: #7c3aed; }
.shop-card-body { padding: 20px; flex: 1; }
.shop-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; padding: 3px 9px; border-radius: var(--pub-radius-pill);
  margin-bottom: 10px;
}
.shop-tag--physical { background: rgba(18,183,106,.1); color: #065f46; }
.shop-tag--digital  { background: rgba(124,58,237,.1); color: #7c3aed; }
.shop-card-body h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; letter-spacing: -.02em; }
.shop-card-body p  { font-size: 13px; color: var(--pub-muted); line-height: 1.65; font-weight: 500; }
.shop-card-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--pub-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--pub-light);
}
.shop-price { font-size: 22px; font-weight: 900; letter-spacing: -.03em; font-family: 'JetBrains Mono', monospace; color: var(--pub-text); }
.shop-btn { padding: 9px 16px; font-size: 13px; opacity: .6; cursor: not-allowed; }
.shop-notify-card {
  background: linear-gradient(135deg, #060e24, #0d1f5e);
  border-radius: var(--pub-radius);
  padding: 52px 40px;
  text-align: center;
  border: 1px solid rgba(11,168,237,.2);
}
.shop-notify-icon { font-size: 48px; color: var(--pub-secondary); margin-bottom: 20px; }
.shop-notify-card h2 { font-size: 32px; font-weight: 900; color: #fff; letter-spacing: -.04em; margin-bottom: 14px; }
.shop-notify-card p  { font-size: 16px; color: rgba(255,255,255,.6); max-width: 460px; margin: 0 auto 28px; line-height: 1.7; font-weight: 500; }
.shop-notify-note { font-size: 13px; color: rgba(255,255,255,.4); margin-top: 16px; font-weight: 500; }
.shop-notify-note a { color: rgba(255,255,255,.7); }

/* -- Contact Page ------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form-group { display: flex; flex-direction: column; gap: 6px; }
.contact-form-group label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--pub-dim); }
.contact-form-group label span { color: var(--pub-primary); }
.contact-form-group input, .contact-form-group select, .contact-form-group textarea {
  width: 100%; padding: 12px 15px; font-size: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 500;
  background: #fff; border: 1.5px solid var(--pub-line);
  border-radius: var(--pub-radius-sm); color: var(--pub-text); outline: none;
  transition: border-color .2s, box-shadow .2s; appearance: none;
}
.contact-form-group input:focus, .contact-form-group select:focus, .contact-form-group textarea:focus {
  border-color: var(--pub-primary); box-shadow: 0 0 0 4px rgba(15,42,246,.10);
}
.contact-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%235a6a8a'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.contact-form-group textarea { resize: vertical; min-height: 140px; }
.contact-alert {
  padding: 12px 16px; border-radius: var(--pub-radius-sm); border: 1px solid rgba(239,68,68,.2);
  background: rgba(239,68,68,.05); color: #b91c1c; font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.contact-success { text-align: center; padding: 48px 24px; }
.contact-success-icon { font-size: 52px; color: var(--pub-success); margin-bottom: 16px; }
.contact-success h3 { font-size: 24px; font-weight: 900; margin-bottom: 10px; }
.contact-success p  { font-size: 15px; color: var(--pub-muted); }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  background: var(--pub-light); border: 1px solid var(--pub-line);
  border-radius: var(--pub-radius); padding: 24px;
}
.contact-info-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 16px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--pub-line);
}
.contact-info-item:last-child { border-bottom: none; }
.ci-icon {
  width: 36px; height: 36px; background: #fff; border: 1px solid var(--pub-line);
  border-radius: 10px; display: grid; place-items: center;
  color: var(--pub-primary); font-size: 15px; flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.contact-info-item span, .contact-info-item a { font-size: 13px; color: var(--pub-muted); font-weight: 500; }
.contact-quick-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--pub-line);
  font-size: 14px; font-weight: 600; color: var(--pub-dim);
  transition: color .2s; text-decoration: none;
}
.contact-quick-link:last-child { border-bottom: none; }
.contact-quick-link:hover { color: var(--pub-primary); }
.contact-quick-link i { color: var(--pub-primary); width: 16px; }

/* -- Legal Pages ------------------------------------------- */
.legal-body h2 {
  font-size: 20px; font-weight: 800; letter-spacing: -.02em;
  margin: 32px 0 12px; color: var(--pub-text);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { font-size: 15px; color: var(--pub-muted); line-height: 1.8; margin-bottom: 14px; font-weight: 500; }
.legal-body ul { padding-left: 20px; margin-bottom: 14px; }
.legal-body ul li { font-size: 15px; color: var(--pub-muted); line-height: 1.8; margin-bottom: 6px; font-weight: 500; }

/* -- Responsive -------------------------------------------- */
@media (max-width: 960px) {
  .feat-detail-grid, .feat-detail-grid--reverse { grid-template-columns: 1fr; direction: ltr; }
  .about-mission, .built-by-section { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-card--featured { transform: none; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .all-features-grid { grid-template-columns: repeat(2,1fr); }
  .mission-stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .shop-grid    { grid-template-columns: 1fr; }
  .contact-form-row { grid-template-columns: 1fr; }
  .all-features-grid { grid-template-columns: repeat(2,1fr); }
  .shop-notify-card { padding: 36px 20px; }
}

/* Final deployment overrides: duplicate stylesheet blocks above can otherwise win on mobile. */
.fa,
.fa-solid,
.fas {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}
.fa-regular,
.far {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 400 !important;
}
.fa-brands,
.fab {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}
.pub-mobile-menu {
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-bottom: env(safe-area-inset-bottom);
}
.pub-mobile-nav {
  flex: 1 0 auto;
}
.pub-mobile-menu-footer {
  padding-bottom: calc(28px + env(safe-area-inset-bottom));
}

/* Final overrides: keep bundled Font Awesome and mobile navigation reliable after duplicate CSS blocks. */
.fa,
.fa-solid,
.fas {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}
.fa-regular,
.far {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 400 !important;
}
.fa-brands,
.fab {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}
.pub-mobile-menu {
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-bottom: env(safe-area-inset-bottom);
}
.pub-mobile-nav {
  flex: 1 0 auto;
}
.pub-mobile-menu-footer {
  padding-bottom: calc(28px + env(safe-area-inset-bottom));
}

/* -- Live Stats Strip -------------------------------------- */
.live-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--pub-radius);
  padding: 32px 40px;
  margin-bottom: 8px;
}
.live-stat {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 12px 24px;
}
.live-stat-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.04em;
}
.live-stat-num.text-danger { color: #ff6b6b; }
.live-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.3;
}
.live-stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .live-stats-strip { flex-direction: column; padding: 24px; }
  .live-stat-divider { width: 60px; height: 1px; }
  .live-stat { padding: 16px 0; }
}
  --pub-grad:        linear-gradient(135deg, #0F2AF6, #0BA8ED);
  --pub-dark:        #060e24;
  --pub-navy:        #080f2a;
  --pub-ink:         #050c1f;

  --pub-text:        #0d1730;
  --pub-muted:       #5a6a8a;
  --pub-dim:         #374263;
  --pub-light:       #f4f7ff;
  --pub-card:        #ffffff;
  --pub-line:        #e0e8f8;

  --pub-success:     #12b76a;
  --pub-danger:      #ef4444;
  --pub-warning:     #f79009;
  --pub-purple:      #7c3aed;

  --pub-radius:      20px;
  --pub-radius-sm:   12px;
  --pub-radius-pill: 999px;

  --pub-shadow:      0 24px 64px rgba(15,42,246,.12);
  --pub-shadow-lg:   0 40px 100px rgba(15,42,246,.18);

  --nav-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: #fff;
  color: var(--pub-text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* -- Container --------------------------------------------- */
.pub-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* -- Logo -------------------------------------------------- */
.pub-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

/* Full horizontal lockup (Regular)  -  used in nav, auth, footer on light bg */
.logo-full {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  /* Logo already has brand blue - display as-is on white/light backgrounds */
}

/* Full lockup on dark/navy backgrounds  -  white version */
.logo-full-white {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}

/* Icon only (dw_icon.png)  -  sidebar, favicon contexts */
.logo-icon-img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 12px;
}

/* CTA / hero large logo */
.logo-hero {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Footer logo */
.logo-footer {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 14px;
  display: block;
}

/* Auth card logo */
.logo-auth {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* Fallback text mark if image fails */
.logo-mark {
  width: 44px; height: 44px;
  background: var(--pub-grad);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 16px;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: .5px;
  flex-shrink: 0;
}
.logo-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-fallback span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--pub-text);
  letter-spacing: -.02em;
}

/* -- Buttons ----------------------------------------------- */
.pub-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pub-grad);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--pub-radius-pill);
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 16px 40px rgba(15,42,246,.28);
  white-space: nowrap;
}
.pub-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 50px rgba(15,42,246,.36); }

.pub-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--pub-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: var(--pub-radius-pill);
  border: 2px solid var(--pub-primary);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.pub-btn-outline:hover { background: var(--pub-primary); color: #fff; }

.pub-btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--pub-dim);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 16px;
  border-radius: var(--pub-radius-pill);
  transition: color .2s;
}
.pub-btn-ghost:hover { color: var(--pub-primary); }

.pub-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--pub-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: var(--pub-radius-pill);
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 16px 48px rgba(0,0,0,.2);
}
.pub-btn-white:hover { transform: translateY(-2px); box-shadow: 0 24px 60px rgba(0,0,0,.28); }

.pub-btn-lg { padding: 16px 32px; font-size: 16px; }
.pub-btn-full { width: 100%; justify-content: center; }

/* -- Nav --------------------------------------------------- */
.pub-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--pub-line);
  height: var(--nav-h);
}
.pub-nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}
.pub-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  margin-left: 16px;
}
.pub-nav-links a {
  font-weight: 700;
  font-size: 15px;
  color: var(--pub-dim);
  padding: 8px 14px;
  border-radius: var(--pub-radius-pill);
  transition: all .2s;
}
.pub-nav-links a:hover { color: var(--pub-primary); background: var(--pub-light); }
.pub-nav-links a.active {
  color: var(--pub-primary);
  background: var(--pub-light);
  font-weight: 800;
}
.pub-nav-actions { display: flex; align-items: center; gap: 10px; }

.pub-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  z-index: 310;
  position: relative;
}
.pub-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--pub-text);
  border-radius: 2px;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  transform-origin: center;
}
.pub-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.pub-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.pub-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Overlay backdrop */
.pub-mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,14,36,.6);
  backdrop-filter: blur(4px);
  z-index: 290;
  opacity: 0;
  transition: opacity .3s ease;
}
.pub-mobile-backdrop.open { display: block; opacity: 1; }

/* Slide-in drawer */
.pub-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(380px, 90vw);
  height: 100vh;
  background: #fff;
  z-index: 300;
  display: flex;
  flex-direction: column;
  transition: right .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -20px 0 80px rgba(15,42,246,.15);
  overflow-y: auto;
}
.pub-mobile-menu.open { right: 0; }

.pub-mobile-menu-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--pub-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pub-mobile-menu-header img {
  height: 36px;
  width: auto;
}
.pub-mobile-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--pub-line);
  background: var(--pub-light);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 18px;
  color: var(--pub-dim);
  transition: all .2s;
}
.pub-mobile-close:hover { background: var(--pub-line); }

.pub-mobile-nav {
  padding: 16px 0;
  flex: 1;
}
.pub-mobile-nav-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--pub-muted);
  padding: 12px 24px 6px;
}
.pub-mobile-menu a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 16px;
  color: var(--pub-dim);
  padding: 14px 24px;
  border-bottom: 1px solid rgba(0,0,0,.04);
  transition: all .2s;
  text-decoration: none;
}
.pub-mobile-menu a:hover { color: var(--pub-primary); background: var(--pub-light); }
.pub-mobile-menu a .menu-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--pub-light);
  display: grid;
  place-items: center;
  font-size: 18px;
  flex-shrink: 0;
}
.pub-mobile-menu a:hover .menu-icon { background: rgba(15,42,246,.1); }

.pub-mobile-menu-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--pub-line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pub-mobile-menu-footer .pub-btn-primary,
.pub-mobile-menu-footer .pub-btn-outline {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 15px;
}

/* -- Hero -------------------------------------------------- */
.hero-section {
  background: var(--pub-dark);
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 60px) 0 0;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,42,246,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,42,246,.08) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,.6) 30%, rgba(0,0,0,.4) 70%, transparent);
}
.hero-bg-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(11,168,237,.18) 0%, rgba(15,42,246,.12) 40%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding-bottom: 60px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11,168,237,.14);
  border: 1px solid rgba(11,168,237,.3);
  color: #7dd3f8;
  font-weight: 700;
  font-size: 13px;
  padding: 7px 16px;
  border-radius: var(--pub-radius-pill);
  margin-bottom: 28px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--pub-secondary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}
.hero-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 24px;
}
.hero-headline em {
  font-style: italic;
  background: linear-gradient(135deg, #0BA8ED, #4dd4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 19px;
  color: #94a8cc;
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto 36px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.trust-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.03em;
}
.trust-label {
  font-size: 12px;
  color: #6b80a8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.12);
}

/* Dashboard mock */
.hero-dashboard-preview {
  position: relative;
  z-index: 2;
  margin-top: 60px;
  padding-bottom: 0;
}
.dashboard-mock {
  background: #111827;
  border-radius: 16px 16px 0 0;
  border: 1px solid rgba(255,255,255,.1);
  border-bottom: none;
  overflow: hidden;
  box-shadow: 0 -20px 60px rgba(15,42,246,.2);
  max-width: 920px;
  margin: 0 auto;
}
.mock-topbar {
  background: #1f2937;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots i {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: block;
}
.mock-dots i:nth-child(1) { background: #ef4444; }
.mock-dots i:nth-child(2) { background: #f59e0b; }
.mock-dots i:nth-child(3) { background: #22c55e; }
.mock-url {
  font-family: 'Plus Jakarta Sans', monospace;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.06);
  padding: 4px 12px;
  border-radius: 6px;
}
.mock-body { display: flex; min-height: 280px; }
.mock-sidebar {
  width: 200px;
  background: #0c1220;
  padding: 16px 0;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,.06);
}
.mock-nav-item {
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.4);
  cursor: default;
}
.mock-nav-item.active { color: #fff; background: rgba(15,42,246,.3); border-left: 3px solid #0BA8ED; }
.mock-content { flex: 1; padding: 16px; }
.mock-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
  margin-bottom: 12px;
}
.mock-stat {
  background: rgba(255,255,255,.05);
  border-radius: 10px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.07);
}
.mock-stat.green { border-color: rgba(18,183,106,.3); }
.mock-stat.red   { border-color: rgba(239,68,68,.3); }
.mock-stat.orange{ border-color: rgba(247,144,9,.3); }
.mock-stat.blue  { border-color: rgba(11,168,237,.3); }
.ms-val { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 22px; font-weight: 900; color: #fff; }
.ms-label { font-size: 10px; color: rgba(255,255,255,.4); font-weight: 600; text-transform: uppercase; }
.mock-alert {
  background: rgba(239,68,68,.1);
  border: 1px solid rgba(239,68,68,.2);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
}
.mock-alert.blue { background: rgba(15,42,246,.1); border-color: rgba(11,168,237,.2); }
.mock-alert strong { color: #fff; }
.mock-alert-icon { flex-shrink: 0; }

/* -- Problem Section --------------------------------------- */
.problem-section {
  background: var(--pub-light);
  padding: 80px 0;
  border-bottom: 1px solid var(--pub-line);
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.problem-card {
  background: #fff;
  border: 1px solid var(--pub-line);
  border-radius: var(--pub-radius);
  padding: 32px;
  box-shadow: 0 8px 24px rgba(15,42,246,.06);
}
.problem-icon { font-size: 36px; margin-bottom: 16px; }
.problem-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.problem-card p { font-size: 15px; color: var(--pub-muted); line-height: 1.65; }

/* -- Features Section -------------------------------------- */
.features-section { padding: 100px 0; background: #fff; }
.section-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--pub-primary);
  margin-bottom: 14px;
}
.section-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 52px;
  color: var(--pub-text);
}
.features-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.feature-card {
  background: var(--pub-light);
  border: 1px solid var(--pub-line);
  border-radius: var(--pub-radius);
  padding: 36px;
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--pub-shadow); }
.feature-card--large { grid-row: span 2; }
.feature-tag {
  display: inline-block;
  background: rgba(15,42,246,.1);
  color: var(--pub-primary);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 4px 10px;
  border-radius: var(--pub-radius-pill);
  margin-bottom: 16px;
}
.feature-tag--red    { background: rgba(239,68,68,.1);  color: #dc2626; }
.feature-tag--orange { background: rgba(247,144,9,.1);  color: #b45309; }
.feature-tag--purple { background: rgba(124,58,237,.1); color: #7c3aed; }
.feature-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.feature-card p { font-size: 15px; color: var(--pub-muted); line-height: 1.7; margin-bottom: 20px; }
.feature-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.feature-highlights span {
  background: rgba(15,42,246,.08);
  color: var(--pub-primary);
  font-size: 13px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--pub-radius-pill);
}

/* -- Proof Section ----------------------------------------- */
.proof-section {
  background: var(--pub-dark);
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.proof-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  color: rgba(255,255,255,.5);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 48px;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.proof-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--pub-radius);
  padding: 36px;
}
.proof-icon { font-size: 32px; margin-bottom: 16px; }
.proof-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}
.proof-card p { font-size: 15px; color: #7a8fb5; line-height: 1.65; }

/* -- Pricing Preview --------------------------------------- */
.pricing-preview-section { background: var(--pub-light); padding: 100px 0; }
.pricing-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.pp-card {
  background: #fff;
  border: 1px solid var(--pub-line);
  border-radius: var(--pub-radius);
  padding: 32px 24px;
  position: relative;
  box-shadow: 0 8px 24px rgba(15,42,246,.05);
}
.pp-card--featured {
  border-color: var(--pub-primary);
  border-width: 2px;
  box-shadow: var(--pub-shadow);
  transform: translateY(-8px);
}
.pp-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pub-grad);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 14px;
  border-radius: var(--pub-radius-pill);
  white-space: nowrap;
}
.pp-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--pub-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.pp-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -.05em;
  color: var(--pub-text);
  line-height: 1;
  margin-bottom: 4px;
}
.pp-sub {
  font-size: 13px;
  color: var(--pub-muted);
  font-weight: 600;
  margin-bottom: 24px;
}
.pp-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pub-dim);
}
.pp-features li.dim { color: #b0baca; }

/* -- Final CTA --------------------------------------------- */
.final-cta-section { background: var(--pub-dark); padding: 100px 0; }
.final-cta-inner {
  background: linear-gradient(135deg, #0a1a4a, #0f2a73);
  border: 1px solid rgba(11,168,237,.2);
  border-radius: 32px;
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(15,42,246,.3);
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(11,168,237,.2), transparent 60%);
  pointer-events: none;
}
.cta-logo { height: 48px; margin-bottom: 24px; position: relative; z-index: 1; }
.final-cta-inner h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.final-cta-inner p {
  font-size: 18px;
  color: #8aa3cc;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.pub-btn-white { position: relative; z-index: 1; }

/* -- Footer ------------------------------------------------ */
.pub-footer { background: var(--pub-ink); padding: 72px 0 0; }
.pub-footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.pub-footer-brand p {
  font-size: 14px;
  color: #5a6e92;
  line-height: 1.7;
  max-width: 280px;
}
.pub-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #8aa3cc;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: #5a6e92;
  font-weight: 600;
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.pub-footer-bottom {
  padding: 20px 0;
  display: flex;
}
.pub-footer-bottom .pub-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #3a4d6b;
  font-weight: 600;
  width: 100%;
}

/* -- Responsive -------------------------------------------- */
@media (max-width: 960px) {
  .pub-nav-links, .pub-nav-actions { display: none; }
  .pub-hamburger { display: flex; }
  .problem-grid  { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-row: span 1; }
  .proof-grid    { grid-template-columns: 1fr; }
  .pricing-preview-grid { grid-template-columns: repeat(2,1fr); }
  .pp-card--featured { transform: none; }
  .pub-footer-inner { grid-template-columns: 1fr; }
  .pub-footer-links { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .hero-actions { flex-direction: column; align-items: stretch; text-align: center; }
  .hero-trust { gap: 0; }
  .trust-item { padding: 0 14px; }
  .mock-sidebar { display: none; }
  .mock-stats { grid-template-columns: repeat(2,1fr); }
  .pricing-preview-grid { grid-template-columns: 1fr; }
  .final-cta-inner { padding: 48px 24px; }
  .pub-footer-bottom .pub-container { flex-direction: column; gap: 6px; text-align: center; }
}

/* -- Footer tagline ---------------------------------------- */
.footer-tagline {
  font-size: 13px;
  color: #4a5e82;
  font-weight: 700;
  margin-top: 14px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-tagline i { color: var(--pub-secondary); margin-right: 5px; }
.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col a i { color: #3a4d6b; transition: color .2s; font-size: 12px; }
.footer-col a:hover i { color: var(--pub-secondary); }

/* -- Page hero (inner pages) ------------------------------- */
.page-hero {
  background: linear-gradient(135deg, #060e24 0%, #0d1f5e 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(11,168,237,.15);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(11,168,237,.14), transparent 65%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: 10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(15,42,246,.1), transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; text-align: center; }
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11,168,237,.14);
  border: 1px solid rgba(11,168,237,.3);
  color: #7dd3f8;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: var(--pub-radius-pill);
  margin-bottom: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.page-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -.04em;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.6);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 500;
}

/* -- Content sections -------------------------------------- */
.content-section { padding: 80px 0; }
.content-section.bg-light { background: var(--pub-light); }
.content-section.bg-dark  { background: var(--pub-dark); }
.content-section.bg-white { background: #fff; }

/* -----------------------------------------------------------
   Inner Pages  -  Features, Pricing, About, Shop, Contact, Legal
   ----------------------------------------------------------- */

/* -- Features Page ----------------------------------------- */
.feat-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feat-detail-grid--reverse { direction: rtl; }
.feat-detail-grid--reverse > * { direction: ltr; }

.feat-detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(15,42,246,.08);
  color: var(--pub-primary);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 12px;
  border-radius: var(--pub-radius-pill);
  margin-bottom: 16px;
}
.feat-detail-tag--red    { background: rgba(239,68,68,.08); color: #dc2626; }
.feat-detail-tag--orange { background: rgba(247,144,9,.08); color: #b45309; }
.feat-detail-tag--purple { background: rgba(124,58,237,.08); color: #7c3aed; }

.feat-detail-text h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: -.04em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.feat-detail-text p { font-size: 16px; color: var(--pub-muted); line-height: 1.75; margin-bottom: 20px; font-weight: 500; }

.feat-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--pub-dim);
}
.feat-list li i { color: var(--pub-primary); margin-top: 2px; flex-shrink: 0; }

/* Feature mock UI */
.feat-mock {
  background: #fff;
  border: 1px solid var(--pub-line);
  border-radius: var(--pub-radius);
  box-shadow: var(--pub-shadow);
  overflow: hidden;
}
.feat-mock-header {
  background: var(--pub-light);
  border-bottom: 1px solid var(--pub-line);
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 800;
  color: var(--pub-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.feat-mock-header.red    { color: #dc2626; background: rgba(239,68,68,.05); }
.feat-mock-header.orange { color: #b45309; background: rgba(247,144,9,.05); }
.feat-mock-header.purple { color: #7c3aed; background: rgba(124,58,237,.05); }
.feat-mock-body { padding: 16px; }
.feat-mock-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  margin-bottom: 4px;
  background: var(--pub-light);
}
.feat-mock-row.alert-row { background: rgba(239,68,68,.06); }
.feat-mock-row .green { color: var(--pub-success); }
.feat-mock-row .red   { color: var(--pub-danger); }
.feat-mock-discrepancy {
  margin-top: 10px;
  padding: 10px 14px;
  background: rgba(239,68,68,.08);
  border: 1px solid rgba(239,68,68,.2);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #dc2626;
  display: flex;
  align-items: center;
  gap: 8px;
}
.feat-mock-discrepancy.purple { background: rgba(124,58,237,.08); border-color: rgba(124,58,237,.2); color: #7c3aed; }
.feat-mock-stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 12px; }
.fms { background: var(--pub-light); border-radius: 10px; padding: 10px; text-align: center; }
.fms-val { font-size: 20px; font-weight: 900; letter-spacing: -.03em; }
.fms-val.red  { color: var(--pub-danger); }
.fms-val.blue { color: var(--pub-primary); }
.fms-label { font-size: 10px; color: var(--pub-muted); font-weight: 700; text-transform: uppercase; }
.feat-mock-alert {
  padding: 9px 12px;
  background: rgba(239,68,68,.06);
  border: 1px solid rgba(239,68,68,.15);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--pub-dim);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.feat-mock-alert i { color: var(--pub-danger); }
.feat-report-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--pub-line);
  font-size: 13px;
}
.feat-report-item:last-child { border-bottom: none; }
.feat-report-item > i { font-size: 22px; color: var(--pub-danger); flex-shrink: 0; }
.feat-report-item strong { display: block; font-weight: 700; color: var(--pub-text); }
.feat-report-item span   { font-size: 11px; color: var(--pub-muted); }
.feat-mock-dl { margin-left: auto; color: var(--pub-primary); font-size: 16px; }

.all-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.all-feat-card {
  background: #fff;
  border: 1px solid var(--pub-line);
  border-radius: var(--pub-radius-sm);
  padding: 20px 16px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.all-feat-card:hover { transform: translateY(-3px); box-shadow: var(--pub-shadow); }
.all-feat-icon { font-size: 24px; color: var(--pub-primary); margin-bottom: 10px; }
.all-feat-label { font-size: 13px; font-weight: 700; color: var(--pub-dim); margin-bottom: 8px; }
.all-feat-tier {
  font-size: 10px; font-weight: 800;
  padding: 3px 8px; border-radius: var(--pub-radius-pill);
  text-transform: uppercase; letter-spacing: .06em;
}
.tag-all    { background: var(--pub-light);              color: var(--pub-primary); }
.tag-driver { background: rgba(18,183,106,.1);           color: #065f46; }
.tag-pro    { background: rgba(15,42,246,.1);            color: var(--pub-primary); }
.tag-elite  { background: rgba(124,58,237,.1);           color: #7c3aed; }

/* -- Pricing Page ------------------------------------------ */
.billing-toggle {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--pub-line);
  border-radius: var(--pub-radius-pill);
  padding: 4px;
  gap: 2px;
  box-shadow: var(--pub-shadow-sm);
}
.btog-btn {
  padding: 10px 24px;
  border-radius: var(--pub-radius-pill);
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  color: var(--pub-muted);
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btog-btn.active { background: var(--pub-primary-grad, var(--pub-grad, #0F2AF6)); color: #fff; box-shadow: 0 4px 14px rgba(15,42,246,.25); }
.btog-save {
  background: rgba(18,183,106,.15);
  color: #065f46;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--pub-radius-pill);
}
.btog-btn.active .btog-save { background: rgba(255,255,255,.2); color: #fff; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--pub-line);
  border-radius: var(--pub-radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(15,42,246,.05);
  transition: transform .2s, box-shadow .2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--pub-shadow); }
.pricing-card--featured {
  border-color: var(--pub-primary);
  border-width: 2px;
  box-shadow: var(--pub-shadow);
  transform: translateY(-8px);
}
.pricing-card--featured:hover { transform: translateY(-12px); }
.pricing-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #0F2AF6, #0BA8ED);
  color: #fff;
  font-size: 11px; font-weight: 800;
  padding: 4px 14px;
  border-radius: 0 0 10px 10px;
  white-space: nowrap;
  letter-spacing: .04em;
}
.pricing-card-header { padding: 28px 22px 20px; border-bottom: 1px solid var(--pub-line); }
.plan-name {
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 12px;
}
.plan-primary { color: var(--pub-primary); }
.plan-blue    { color: #0284c7; }
.plan-muted   { color: var(--pub-muted); }
.plan-dark    { color: var(--pub-dark); }

.price-amt { font-size: 42px; font-weight: 900; letter-spacing: -.06em; color: var(--pub-text); font-family: 'JetBrains Mono', monospace; }
.price-period { font-size: 14px; color: var(--pub-muted); font-weight: 600; margin-left: 2px; }
.price-annual-note { font-size: 12px; color: var(--pub-muted); font-weight: 600; margin-top: 2px; }
.plan-desc { font-size: 13px; color: var(--pub-muted); font-weight: 500; margin-top: 10px; line-height: 1.55; }

.plan-features {
  list-style: none;
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-weight: 600;
  color: var(--pub-dim);
  line-height: 1.4;
}
.plan-features li.excluded { color: #b0baca; }
.plan-features li i { margin-top: 1px; flex-shrink: 0; }
.plan-features li.included i { color: var(--pub-primary); }
.plan-features li.excluded i { color: #d0d9ee; }

.pricing-card-footer { padding: 16px 22px 22px; }
.plan-trial-note { text-align: center; font-size: 11px; color: var(--pub-muted); margin-top: 10px; font-weight: 600; }
.plan-trial-note i { color: var(--pub-primary); }

.pub-btn-dark {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--pub-dark); color: #fff;
  font-weight: 800; font-size: 14px; padding: 13px 20px;
  border-radius: var(--pub-radius-pill); border: none; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: transform .2s;
  text-decoration: none; white-space: nowrap;
}
.pub-btn-dark:hover { transform: translateY(-2px); }
.pub-btn-dark.pub-btn-full { width: 100%; }

.faq-grid { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--pub-line); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 0; font-size: 16px; font-weight: 700; color: var(--pub-text);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: color .2s;
}
.faq-question:hover { color: var(--pub-primary); }
.faq-question.open { color: var(--pub-primary); }
.faq-chevron { transition: transform .3s; font-size: 13px; color: var(--pub-muted); flex-shrink: 0; }
.faq-question.open .faq-chevron { transform: rotate(180deg); color: var(--pub-primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer.open { max-height: 300px; }
.faq-answer p { padding: 0 0 20px; font-size: 15px; color: var(--pub-muted); line-height: 1.75; font-weight: 500; }

/* -- About Page -------------------------------------------- */
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.mission-statement h2 { margin-bottom: 20px; }
.mission-statement p { font-size: 16px; color: var(--pub-muted); line-height: 1.8; margin-bottom: 16px; font-weight: 500; }
.mission-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mission-stat {
  background: var(--pub-light);
  border: 1px solid var(--pub-line);
  border-radius: var(--pub-radius);
  padding: 24px;
  text-align: center;
}
.ms-num { font-size: 42px; font-weight: 900; letter-spacing: -.05em; color: var(--pub-primary); font-family: 'JetBrains Mono', monospace; }
.ms-label { font-size: 13px; color: var(--pub-muted); font-weight: 600; margin-top: 4px; }

.why-blocks { display: flex; flex-direction: column; gap: 28px; }
.why-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-icon {
  width: 52px; height: 52px;
  background: var(--pub-light);
  border: 1px solid var(--pub-line);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 22px;
  color: var(--pub-primary);
  flex-shrink: 0;
}
.why-block h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; letter-spacing: -.02em; }
.why-block p  { font-size: 15px; color: var(--pub-muted); line-height: 1.7; font-weight: 500; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--pub-light);
  border: 1px solid var(--pub-line);
  border-radius: var(--pub-radius);
  padding: 32px;
}
.value-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #0F2AF6, #0BA8ED);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: #fff;
  margin-bottom: 16px;
}
.value-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; letter-spacing: -.02em; }
.value-card p  { font-size: 15px; color: var(--pub-muted); line-height: 1.7; font-weight: 500; }

.built-by-section { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.built-by-text h2 { font-size: 36px; font-weight: 900; letter-spacing: -.04em; margin-bottom: 20px; }
.built-by-text p  { font-size: 16px; color: var(--pub-muted); line-height: 1.8; margin-bottom: 16px; font-weight: 500; }
.location-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--pub-line);
  border-radius: var(--pub-radius-sm);
  padding: 18px 20px;
  margin-bottom: 12px;
}
.location-card > i { font-size: 22px; color: var(--pub-primary); width: 28px; text-align: center; }
.location-card strong { display: block; font-weight: 800; font-size: 14px; }
.location-card span, .location-card a { font-size: 13px; color: var(--pub-muted); font-weight: 500; }

/* -- Shop Page --------------------------------------------- */
.shop-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pub-dim);
  background: rgba(15,42,246,.05);
  border: 1px solid rgba(15,42,246,.12);
  border-radius: var(--pub-radius-sm);
  padding: 12px 16px;
}
.shop-notice i { color: var(--pub-primary); font-size: 16px; }
.shop-notice a { margin-left: auto; flex-shrink: 0; }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.shop-card {
  background: #fff;
  border: 1px solid var(--pub-line);
  border-radius: var(--pub-radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(15,42,246,.05);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.shop-card:hover { transform: translateY(-4px); box-shadow: var(--pub-shadow); }
.shop-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: linear-gradient(135deg, #0F2AF6, #0BA8ED);
  color: #fff;
  font-size: 10px; font-weight: 800;
  padding: 3px 10px;
  border-radius: var(--pub-radius-pill);
  text-transform: uppercase; letter-spacing: .06em;
}
.shop-card-icon {
  background: var(--pub-light);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: var(--pub-primary);
  border-bottom: 1px solid var(--pub-line);
}
.shop-card-icon.digital { background: rgba(124,58,237,.06); color: #7c3aed; }
.shop-card-body { padding: 20px; flex: 1; }
.shop-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 800; text-transform: uppercase;
  letter-spacing: .08em; padding: 3px 9px; border-radius: var(--pub-radius-pill);
  margin-bottom: 10px;
}
.shop-tag--physical { background: rgba(18,183,106,.1); color: #065f46; }
.shop-tag--digital  { background: rgba(124,58,237,.1); color: #7c3aed; }
.shop-card-body h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; letter-spacing: -.02em; }
.shop-card-body p  { font-size: 13px; color: var(--pub-muted); line-height: 1.65; font-weight: 500; }
.shop-card-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--pub-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--pub-light);
}
.shop-price { font-size: 22px; font-weight: 900; letter-spacing: -.03em; font-family: 'JetBrains Mono', monospace; color: var(--pub-text); }
.shop-btn { padding: 9px 16px; font-size: 13px; opacity: .6; cursor: not-allowed; }
.shop-notify-card {
  background: linear-gradient(135deg, #060e24, #0d1f5e);
  border-radius: var(--pub-radius);
  padding: 52px 40px;
  text-align: center;
  border: 1px solid rgba(11,168,237,.2);
}
.shop-notify-icon { font-size: 48px; color: var(--pub-secondary); margin-bottom: 20px; }
.shop-notify-card h2 { font-size: 32px; font-weight: 900; color: #fff; letter-spacing: -.04em; margin-bottom: 14px; }
.shop-notify-card p  { font-size: 16px; color: rgba(255,255,255,.6); max-width: 460px; margin: 0 auto 28px; line-height: 1.7; font-weight: 500; }
.shop-notify-note { font-size: 13px; color: rgba(255,255,255,.4); margin-top: 16px; font-weight: 500; }
.shop-notify-note a { color: rgba(255,255,255,.7); }

/* -- Contact Page ------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form-group { display: flex; flex-direction: column; gap: 6px; }
.contact-form-group label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--pub-dim); }
.contact-form-group label span { color: var(--pub-primary); }
.contact-form-group input, .contact-form-group select, .contact-form-group textarea {
  width: 100%; padding: 12px 15px; font-size: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 500;
  background: #fff; border: 1.5px solid var(--pub-line);
  border-radius: var(--pub-radius-sm); color: var(--pub-text); outline: none;
  transition: border-color .2s, box-shadow .2s; appearance: none;
}
.contact-form-group input:focus, .contact-form-group select:focus, .contact-form-group textarea:focus {
  border-color: var(--pub-primary); box-shadow: 0 0 0 4px rgba(15,42,246,.10);
}
.contact-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%235a6a8a'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.contact-form-group textarea { resize: vertical; min-height: 140px; }
.contact-alert {
  padding: 12px 16px; border-radius: var(--pub-radius-sm); border: 1px solid rgba(239,68,68,.2);
  background: rgba(239,68,68,.05); color: #b91c1c; font-size: 14px; font-weight: 600;
  display: flex; align-items: center; gap: 8px; margin-bottom: 8px;
}
.contact-success { text-align: center; padding: 48px 24px; }
.contact-success-icon { font-size: 52px; color: var(--pub-success); margin-bottom: 16px; }
.contact-success h3 { font-size: 24px; font-weight: 900; margin-bottom: 10px; }
.contact-success p  { font-size: 15px; color: var(--pub-muted); }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  background: var(--pub-light); border: 1px solid var(--pub-line);
  border-radius: var(--pub-radius); padding: 24px;
}
.contact-info-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 16px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--pub-line);
}
.contact-info-item:last-child { border-bottom: none; }
.ci-icon {
  width: 36px; height: 36px; background: #fff; border: 1px solid var(--pub-line);
  border-radius: 10px; display: grid; place-items: center;
  color: var(--pub-primary); font-size: 15px; flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.contact-info-item span, .contact-info-item a { font-size: 13px; color: var(--pub-muted); font-weight: 500; }
.contact-quick-link {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid var(--pub-line);
  font-size: 14px; font-weight: 600; color: var(--pub-dim);
  transition: color .2s; text-decoration: none;
}
.contact-quick-link:last-child { border-bottom: none; }
.contact-quick-link:hover { color: var(--pub-primary); }
.contact-quick-link i { color: var(--pub-primary); width: 16px; }

/* -- Legal Pages ------------------------------------------- */
.legal-body h2 {
  font-size: 20px; font-weight: 800; letter-spacing: -.02em;
  margin: 32px 0 12px; color: var(--pub-text);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { font-size: 15px; color: var(--pub-muted); line-height: 1.8; margin-bottom: 14px; font-weight: 500; }
.legal-body ul { padding-left: 20px; margin-bottom: 14px; }
.legal-body ul li { font-size: 15px; color: var(--pub-muted); line-height: 1.8; margin-bottom: 6px; font-weight: 500; }

/* -- Responsive -------------------------------------------- */
@media (max-width: 960px) {
  .feat-detail-grid, .feat-detail-grid--reverse { grid-template-columns: 1fr; direction: ltr; }
  .about-mission, .built-by-section { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-card--featured { transform: none; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .all-features-grid { grid-template-columns: repeat(2,1fr); }
  .mission-stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .shop-grid    { grid-template-columns: 1fr; }
  .contact-form-row { grid-template-columns: 1fr; }
  .all-features-grid { grid-template-columns: repeat(2,1fr); }
  .shop-notify-card { padding: 36px 20px; }
}

/* Final deployment overrides: duplicate stylesheet blocks above can otherwise win on mobile. */
.fa,
.fa-solid,
.fas {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}
.fa-regular,
.far {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 400 !important;
}
.fa-brands,
.fab {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400 !important;
}
.pub-mobile-menu {
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-bottom: env(safe-area-inset-bottom);
}
.pub-mobile-nav {
  flex: 1 0 auto;
}
.pub-mobile-menu-footer {
  padding-bottom: calc(28px + env(safe-area-inset-bottom));
}
.public-admin-content {
  color: var(--pub-text);
  font-size: 16px;
  line-height: 1.75;
}
.public-admin-content h2,
.public-admin-content h3,
.public-admin-content h4 {
  color: var(--pub-ink);
  line-height: 1.2;
  margin: 1.4em 0 .55em;
  letter-spacing: 0;
}
.public-admin-content p,
.public-admin-content ul,
.public-admin-content ol,
.public-admin-content blockquote {
  margin-bottom: 1em;
}
.public-admin-content ul,
.public-admin-content ol {
  padding-left: 1.25em;
}
.public-admin-content a {
  color: var(--pub-primary);
  font-weight: 800;
}
.fa-sack-xmark,
.fa-sack-times {
  position: relative;
  display: inline-block;
  width: 1em;
}
.fa-sack-xmark::before,
.fa-sack-times::before {
  content: "\f81d";
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
}
.fa-sack-xmark::after,
.fa-sack-times::after {
  content: "\f00d";
  position: absolute;
  right: -.28em;
  top: -.32em;
  font-family: "Font Awesome 6 Free" !important;
  font-size: .6em;
  font-weight: 900 !important;
  line-height: 1;
}
