/* ===== PluginsKart — Coming Soon Page Styles ===== */

:root {
  --navy: #082b5f;
  --navy-soft: #1c4d8f;
  --green: #3fa53a;
  --green-light: #56c150;
  /* Darker than the brand green above — used only for text/icons that must
     read against a light background, since #3fa53a alone falls short of the
     4.5:1 (text) / 3:1 (icon) contrast ratios required by WCAG 2.1 AA. */
  --green-text: #256b22;
  --gray: #666666;
  --bg-top: #f6faf7;
  --bg-bottom: #eef4fb;
  --card-bg: #ffffff;
  --border: #e3ebe6;
}

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

html {
  scroll-behavior: smooth;
}

/* Visually hidden until focused — lets keyboard users jump past the
   decorative header straight to the main content (WCAG 2.4.1). */
.skip-link {
  position: absolute;
  top: -48px;
  left: 12px;
  z-index: 10;
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: 12px;
}

/* Consistent, visible keyboard-focus indicator for all interactive elements. */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--navy-soft);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Respect the OS-level reduced-motion preference: our looping blob and
   status-dot animations run indefinitely, which requires a way to stop
   them per WCAG 2.2.2 (Pause, Stop, Hide). */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--navy);
  background: linear-gradient(160deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* ---------- Decorative background blobs ---------- */
.background-decor {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.28;
}

.blob--green {
  width: 480px;
  height: 480px;
  background: var(--green);
  top: -160px;
  left: -140px;
  animation: float1 18s ease-in-out infinite;
}

.blob--navy {
  width: 520px;
  height: 520px;
  background: var(--navy-soft);
  bottom: -200px;
  right: -160px;
  opacity: 0.16;
  animation: float2 22s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 50px) scale(1.08); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, -30px) scale(1.06); }
}

/* ---------- Header ---------- */
.site-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 24px 0;
  overflow: hidden;
}

.site-header__logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: 100%;
}

/* ---------- Main / Hero ---------- */
.site-main {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 60px;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 780px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(63, 165, 58, 0.1);
  border: 1px solid rgba(63, 165, 58, 0.3);
  color: var(--green-text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero__eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: ping 1.8s ease-in-out infinite;
}

@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(63, 165, 58, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(63, 165, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(63, 165, 58, 0); }
}

.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: var(--navy);
}

.hero__title span {
  color: var(--green-text);
}

.hero__subtitle {
  max-width: 600px;
  color: var(--gray);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero__subtitle strong {
  color: var(--navy);
  font-weight: 600;
}

/* ---------- Feature list ---------- */
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  list-style: none;
  max-width: 760px;
  margin-top: 8px;
}

.feature-list__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 14px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--gray);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-list__item:hover {
  border-color: rgba(63, 165, 58, 0.4);
  box-shadow: 0 10px 24px -14px rgba(63, 165, 58, 0.4);
  transform: translateY(-2px);
}

.feature-list__icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-list__icon svg {
  width: 100%;
  height: 100%;
}

.feature-list__item strong {
  color: var(--navy);
  font-weight: 600;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 26px 20px 30px;
  color: var(--gray);
  font-size: 13px;
  border-top: 1px solid var(--border);
}

.site-footer__social {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 14px;
  list-style: none;
}

.site-footer__social a {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--navy-soft);
  transition: all 0.2s ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  background: rgba(63, 165, 58, 0.12);
  border-color: rgba(63, 165, 58, 0.4);
  color: var(--green-text);
  transform: translateY(-2px);
}

.site-footer__social svg {
  width: 16px;
  height: 16px;
}

