/* ─────────────────────────────────────────────
   SlickPlugins.com — Main Stylesheet
   ───────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #060d1f;
  --navy-mid:   #0d1b3e;
  --navy-light: #132048;
  --blue:       #1a5cff;
  --blue-bright:#3d7bff;
  --blue-glow:  rgba(26,92,255,0.25);
  --red:        #c8102e;
  --red-bright: #e31837;
  --gold:       #f0b429;
  --white:      #ffffff;
  --off-white:  #f4f6fc;
  --text-muted: #8896b3;
  --border:     rgba(255,255,255,0.08);
  --card-bg:    rgba(255,255,255,0.04);
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --shadow-card: 0 4px 32px rgba(0,0,0,0.35);
  --shadow-glow: 0 0 60px rgba(26,92,255,0.2);
  --font-main:  'Inter', system-ui, sans-serif;
  --font-head:  'Space Grotesk', 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

/* ── Utility ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.sr-only { position: absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform .18s, box-shadow .18s, opacity .18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 24px rgba(26,92,255,0.4);
}
.btn-primary:hover { box-shadow: 0 8px 32px rgba(26,92,255,0.55); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }
.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 24px rgba(200,16,46,0.4);
}
.btn-red:hover { box-shadow: 0 8px 32px rgba(200,16,46,0.55); }
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 18px; font-size: .85rem; }

/* ── Badges ── */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.badge-blue  { background: rgba(26,92,255,0.18); color: #7aa8ff; border: 1px solid rgba(26,92,255,0.35); }
.badge-red   { background: rgba(200,16,46,0.18); color: #ff7a8a; border: 1px solid rgba(200,16,46,0.35); }
.badge-gold  { background: rgba(240,180,41,0.15); color: var(--gold); border: 1px solid rgba(240,180,41,0.3); }
.badge-green { background: rgba(34,197,94,0.15); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(6,13,31,0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
}
.nav-logo .logo-mark {
  width: 36px; height: 36px;
  background: var(--blue);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 900;
  box-shadow: 0 0 16px rgba(26,92,255,0.5);
}
.nav-logo .logo-text span { color: var(--blue-bright); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .18s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ── USA Banner ── */
.usa-banner {
  background: linear-gradient(90deg, #c8102e 0%, #9e0c24 50%, #c8102e 100%);
  padding: 8px 24px;
  text-align: center;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.usa-banner .flag { font-size: 1rem; }

/* ── Hero ── */
.hero {
  padding: 160px 24px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(26,92,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  max-width: 780px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hero-eyebrow .line {
  width: 40px; height: 2px;
  background: var(--blue);
}
.hero-eyebrow span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--blue-bright);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero h1 {
  margin-bottom: 20px;
  background: linear-gradient(135deg, #fff 40%, #7aa8ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 600px;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.trust-item .icon { font-size: 1rem; }
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 100%;
  max-width: 420px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}
.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.hero-card-title { font-size: .9rem; font-weight: 600; color: var(--text-muted); }
.hero-card-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
}
.stat-card .num {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
}
.stat-card .lbl {
  font-size: .72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 2px;
}
.stat-card.alert .num { color: #f87171; }
.stat-card.warn .num { color: var(--gold); }
.blank-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  margin-bottom: 8px;
  font-size: .82rem;
}
.blank-swatch {
  width: 20px; height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.15);
}
.blank-name { flex: 1; font-weight: 500; }
.blank-stock { font-weight: 700; font-size: .9rem; }
.blank-stock.low { color: var(--gold); }
.blank-stock.out { color: #f87171; }

/* ── Section Headings ── */
.section-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.75;
}

/* ── Divider ── */
.divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── About Strip ── */
.about-strip {
  padding: 72px 24px;
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}
.about-item { display: flex; gap: 18px; }
.about-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-item h3 { font-size: 1rem; margin-bottom: 6px; }
.about-item p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }

/* ── Plugins Section ── */
.plugins-section {
  padding: 100px 24px;
}
.plugins-section .container { max-width: 1160px; margin: 0 auto; }
.section-head { margin-bottom: 60px; }
.plugins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.plugin-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  overflow: hidden;
}
.plugin-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
}
.plugin-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(26,92,255,0.3);
}
.plugin-card-icon {
  width: 52px; height: 52px;
  background: rgba(26,92,255,0.15);
  border: 1px solid rgba(26,92,255,0.3);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.plugin-card-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.plugin-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.plugin-card p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 24px; }
.plugin-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  gap: 12px;
  flex-wrap: wrap;
}
.plugin-meta { font-size: .78rem; color: var(--text-muted); }
.plugin-meta strong { color: #fff; font-weight: 600; }
.plugin-card.coming-soon { opacity: .65; }
.plugin-card.coming-soon::before { background: var(--text-muted); }
.plugin-card.coming-soon:hover { transform: none; }

/* ── USA Section ── */
.usa-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, rgba(200,16,46,0.08) 0%, rgba(6,13,31,0) 60%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.usa-section::after {
  content: '🇺🇸';
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  font-size: 200px;
  opacity: .04;
  pointer-events: none;
}
.usa-section .container {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.usa-points { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.usa-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: var(--text-muted);
}
.usa-points li .check {
  color: #4ade80;
  font-size: 1rem;
  margin-top: 1px;
  flex-shrink: 0;
}
.usa-points li strong { color: #fff; }
.usa-flag-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.usa-flag-card .big-flag { font-size: 5rem; margin-bottom: 20px; }
.usa-flag-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.usa-flag-card p { color: var(--text-muted); font-size: .92rem; line-height: 1.7; }
.usa-flag-card .notice {
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(200,16,46,0.12);
  border: 1px solid rgba(200,16,46,0.25);
  border-radius: var(--radius-sm);
  font-size: .82rem;
  color: #ff9aaa;
  font-weight: 500;
}

/* ── CTA Section ── */
.cta-section {
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(26,92,255,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { margin-bottom: 18px; }
.cta-section p { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 60px 24px 32px;
}
.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p { font-size: .88rem; color: var(--text-muted); line-height: 1.7; max-width: 280px; }
.footer-brand .usa-note {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: #ff9aaa;
  font-weight: 600;
  background: rgba(200,16,46,0.1);
  border: 1px solid rgba(200,16,46,0.2);
  padding: 5px 12px;
  border-radius: 100px;
}
.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .88rem;
  color: var(--text-muted);
  transition: color .18s;
}
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); transition: color .18s; }
.footer-bottom a:hover { color: #fff; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .usa-section .container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 600px) {
  .hero { padding: 120px 24px 72px; }
  .hero-btns { flex-direction: column; }
  .hero-trust { flex-wrap: wrap; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .plugins-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
