/* Alex Initiative — Pristine Guardian Design System */
/* Protocol: Athena-Web v3.0  */

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

:root {
  --background: #FAF8F5;          /* Warm Alabaster textured paper */
  --foreground: #0F172A;          /* Slate-Navy for deep typographical authority */
  --surface: #FDFDFD;             /* Pristine White for structured research cards */
  --surface-subtle: #F3EFEA;
  --accent-gold: #B19470;         /* Fine-Line Champagne Gold details */
  --accent-gold-light: #DFC8A5;
  --accent-blush: #F5EEE6;        /* Soft blush highlights for visual breathing room */
  --conversion-blue: #0070BA;     /* Stripe/PayPal Trust-Blue for checkout CTAs */
  --conversion-blue-dark: #005A94;
  --border: #CBD5E1;              /* Geometric grid alignment borders */
  --border-subtle: #E2E8F0;
  --text-muted: #64748B;
  
  --font-display: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
  --max-width: 1240px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.12);
}

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

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* CLS CONTAINER ARMOR */
.ad-container-leaderboard, .paywall-placeholder-shield {
  min-height: 90px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--background);
}

/* NAVIGATION */
.site-header {
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--foreground);
}

.brand-logo svg {
  width: 32px;
  height: 32px;
  color: var(--accent-gold);
}

.brand-text h1 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--foreground);
  text-transform: uppercase;
}

.brand-text span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  text-transform: uppercase;
  font-weight: 600;
  display: block;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--foreground);
  font-weight: 600;
}

.btn-nav {
  background: var(--foreground);
  color: #FFFFFF !important;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: all 0.2s ease !important;
  min-height: 44px;
}

.btn-nav:hover {
  background: #1E293B;
  box-shadow: var(--shadow-sm);
}

/* HERO SECTION */
.hero-section {
  padding: 72px 24px 56px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
}

.badge-seal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-blush);
  border: 1px solid var(--accent-gold);
  color: #8C6D2D;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  min-height: 44px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 840px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--conversion-blue);
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--conversion-blue-dark);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--surface);
  color: var(--foreground);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.btn-secondary:hover {
  border-color: var(--accent-gold);
  background: var(--surface-subtle);
}

.btn-gold {
  background: var(--accent-gold);
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 44px;
}

.btn-gold:hover {
  background: #9A7E5A;
  box-shadow: var(--shadow-md);
}

/* STATS BANNER */
.stats-banner {
  background: var(--foreground);
  color: #FFFFFF;
  padding: 40px 24px;
  margin: 32px 0 64px;
  border-top: 2px solid var(--accent-gold);
  border-bottom: 2px solid var(--accent-gold);
}

.stats-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--accent-gold-light);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94A3B8;
}

/* CONTAINER */
.main-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 80px;
  width: 100%;
}

.section-header {
  margin-bottom: 36px;
  text-align: center;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--foreground);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 720px;
  margin: 0 auto;
}

/* REVIEWS & CARDS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 64px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.score-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.score-exemplary { background: #E8F5E9; color: #2E7D32; border: 1px solid #C8E6C9; }
.score-compliant { background: #E3F2FD; color: #1565C0; border: 1px solid #BBDEFB; }
.score-risk { background: #FFEBEE; color: #C62828; border: 1px solid #FFCDD2; }

/* UNBLUR PAYWALL GATE */
.unblur-container {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  margin: 40px 0;
  box-shadow: var(--shadow-md);
}

.blurred-text {
  filter: blur(5px);
  user-select: none;
  pointer-events: none;
  opacity: 0.6;
}

.unblur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(250, 248, 245, 0.88);
  backdrop-filter: blur(4px);
  padding: 32px;
  text-align: center;
  border-radius: var(--radius-md);
}

.unblur-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--foreground);
  margin-bottom: 12px;
}

.unblur-overlay p {
  color: var(--text-muted);
  max-width: 580px;
  margin-bottom: 24px;
}

/* PRICING GRID */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin: 48px 0;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease;
}

.pricing-card.featured {
  border: 2px solid var(--accent-gold);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: #FFFFFF;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--foreground);
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--foreground);
  margin: 16px 0;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  margin: 24px 0 36px;
  flex: 1;
}

.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid var(--surface-subtle);
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  gap: 10px;
  align-items: center;
}

.pricing-features li::before {
  content: "✓";
  color: var(--accent-gold);
  font-weight: 700;
}

/* SOVEREIGN FOOTER */
.site-footer {
  background: #0B1120;
  color: #F8FAFC;
  padding: 64px 24px 32px;
  margin-top: auto;
  border-top: 3px solid var(--accent-gold);
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--accent-gold-light);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: #64748B;
}
