/* Email Plugin — Base styles for public pages (landing, privacy, terms, support) */

:root {
  --gp-primary: #4162e1;
  --gp-primary-light: #7089e9;
  --gp-primary-bg: #f0f2ff;
  --gp-text: #2d2d2d;
  --gp-text-muted: #6b7280;
  --gp-bg: #f8f9fc;
  --gp-card-bg: #ffffff;
  --gp-border: #e5e7eb;
}

body {
  font-family: 'Quicksand', sans-serif;
  background: var(--gp-bg);
  color: var(--gp-text);
  margin: 0;
  min-height: 100vh;
}

/* Header */
.gp-header {
  background: var(--gp-card-bg);
  border-bottom: 1px solid var(--gp-border);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.gp-header-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gp-logo { height: 36px; }

.gp-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.gp-logo-text {
  font-weight: 700;
  font-size: 16px;
  color: var(--gp-text);
}

/* Navigation */
.gp-nav a {
  color: var(--gp-text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-left: 24px;
  transition: color 0.15s;
}

.gp-nav a:hover,
.gp-nav a.active {
  color: var(--gp-primary);
}

/* Content */
.gp-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

.gp-content h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

.gp-content h2 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--gp-text);
}

.gp-content h3 {
  font-size: 15px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--gp-text);
}

.gp-content p,
.gp-content li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gp-text-muted);
}

.gp-content ul { padding-left: 20px; }

.gp-content a {
  color: var(--gp-primary);
  text-decoration: none;
}

.gp-content a:hover { text-decoration: underline; }

/* Badge */
.gp-badge {
  display: inline-block;
  background: var(--gp-primary-bg);
  color: var(--gp-primary);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* Updated date */
.gp-updated {
  font-size: 13px;
  color: var(--gp-text-muted);
  margin-bottom: 32px;
}

/* Footer */
.gp-footer {
  border-top: 1px solid var(--gp-border);
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: var(--gp-text-muted);
}

.gp-footer a {
  color: var(--gp-text-muted);
  text-decoration: none;
  margin: 0 12px;
}

.gp-footer a:hover { color: var(--gp-primary); }

/* Responsive */
@media (max-width: 576px) {
  .gp-content { padding: 24px 16px 40px; }
  .gp-content h1 { font-size: 24px; }
  .gp-nav a { margin-left: 16px; font-size: 13px; }
}
