/* =========================================================
   KDS AIRDROP HUB — CLEANED UP BASE + COMPONENT STYLES
   Consolidated design tokens and layouts to reduce duplication.
   ========================================================= */

:root {
  --bg: #07090d;
  --surface: #0e1218;
  --surface-2: #151a22;
  --border: rgba(255, 255, 255, 0.075);
  --border-hover: rgba(0, 229, 160, 0.32);
  --text: #f2f5f7;
  --text-muted: #8d96a3;
  --accent: #00e5a0;
  --accent-bright: #18f5b2;
  --accent-dim: rgba(0, 229, 160, 0.09);
  --accent-glow: rgba(0, 229, 160, 0.20);
  --warn: #f5a623;
  --danger: #ff4d6a;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 18px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.38);
  --prose: 760px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    radial-gradient(circle at 50% -20%, rgba(0, 229, 160, 0.045), transparent 35%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(0, 229, 160, 0.22);
  color: var(--text);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.mt-8 { margin-top: 8px; }
.nowrap { white-space: nowrap; }

/* ---------- NAV ---------- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(7, 9, 13, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.7px;
  color: var(--text);
  text-decoration: none;
}

.logo span {
  background: linear-gradient(135deg, var(--accent), #00c9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 9px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(0, 229, 160, 0.075);
  color: var(--accent);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
  padding: 4px 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
}

.language-option {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  padding: 4px 6px;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.language-option.active {
  color: var(--accent);
  background: rgba(0, 229, 160, 0.08);
}

.language-divider {
  color: var(--text-muted);
  opacity: 0.7;
}

/* ---------- HERO ---------- */
.hero {
  padding: 100px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 850px;
  height: 550px;
  background: radial-gradient(ellipse, rgba(0, 229, 160, 0.13), rgba(0, 201, 255, 0.035) 42%, transparent 72%);
  pointer-events: none;
  opacity: 1;
}

.hero > .container {
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 229, 160, 0.09);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 229, 160, 0.2);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -2px;
  margin-bottom: 20px;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--accent), #00c9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  color: #9ca5b2;
  font-size: 1.1rem;
  max-width: 660px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  color: #0a0b0f;
  box-shadow: 0 8px 24px rgba(0, 229, 160, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 12px 34px rgba(0, 229, 160, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* ---------- STATS ---------- */
.stats-bar {
  display: flex;
  justify-content: space-between;
  gap: 0;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  position: relative;
  text-align: center;
  padding: 4px 20px;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12%;
  width: 1px;
  height: 76%;
  background: rgba(255, 255, 255, 0.07);
}

.stat-value {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--accent), #00c9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.7rem;
  color: #7f8895;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ---------- SECTIONS ---------- */
section {
  padding: 72px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.section-sub {
  color: #8d96a3;
  font-size: 1rem;
  max-width: 580px;
  margin-bottom: 48px;
}

/* ---------- CARDS ---------- */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 22px;
}

.card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008)), var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md), 0 0 35px rgba(0, 229, 160, 0.055);
}

.card-thumb {
  height: 170px;
  background: radial-gradient(circle at 50% 30%, rgba(0, 229, 160, 0.08), transparent 48%), linear-gradient(145deg, #171c24, #0b0e13);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.card-thumb-icon {
  font-size: 2.8rem;
  opacity: 0.75;
  filter: drop-shadow(0 8px 20px rgba(0, 229, 160, 0.12));
}

.card-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 229, 160, 0.08);
  border: 1px solid rgba(0, 229, 160, 0.12);
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 25px;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  letter-spacing: -0.35px;
}

.card-excerpt {
  font-size: 0.87rem;
  color: #8f98a5;
  line-height: 1.55;
  flex: 1;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.76rem;
  color: var(--text-muted);
}

.card-meta .author {
  font-weight: 600;
  color: var(--text);
}

.card-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
}

/* ---------- SAFETY BANNER ---------- */
.safety-banner {
  background: radial-gradient(circle at 0% 50%, rgba(255, 77, 106, 0.06), transparent 35%), linear-gradient(145deg, rgba(255, 255, 255, 0.02), transparent), var(--surface);
  border: 1px solid rgba(255, 77, 106, 0.16);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}

.safety-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.safety-content {
  flex: 1;
  min-width: 280px;
}

.safety-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.safety-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.safety-rules {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  list-style: none;
}

.safety-rules li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}

.safety-rules li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

/* ---------- WATCHLIST ---------- */
.example-banner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.5;
}

.example-banner strong {
  color: var(--warn);
}

.drops-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drop-item {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.018), transparent), var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: border-color 0.2s ease;
  flex-wrap: wrap;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.drop-item:hover {
  border-color: var(--border-hover);
}

.drop-status {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 12px;
  border-radius: 100px;
  white-space: nowrap;
}

.status-active { background: rgba(0, 229, 160, 0.12); color: var(--accent); }
.status-soon { background: rgba(245, 166, 35, 0.12); color: var(--warn); }
.status-watch { background: rgba(0, 201, 255, 0.12); color: #00c9ff; }

.drop-name {
  font-weight: 700;
  font-size: 0.95rem;
  min-width: 190px;
}

.drop-desc {
  color: var(--text-muted);
  font-size: 0.85rem;
  flex: 1;
  min-width: 200px;
}

.drop-link {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.drop-link:hover {
  text-decoration: underline;
}

/* ---------- ARTICLE ---------- */
.article {
  position: relative;
  padding: 64px 0 72px;
}

.article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 100%);
  height: 360px;
  background: radial-gradient(ellipse at center top, rgba(0, 229, 160, 0.055), transparent 68%);
  pointer-events: none;
}

.article-inner {
  max-width: var(--prose);
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  letter-spacing: 0.1px;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb .sep {
  opacity: 0.5;
}

.article-tag {
  display: inline-block;
  background: rgba(0, 229, 160, 0.075);
  color: var(--accent);
  border: 1px solid rgba(0, 229, 160, 0.14);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0, 229, 160, 0.04);
}

.article h1 {
  max-width: 760px;
  font-size: clamp(2rem, 5vw, 3.15rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.8px;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-bottom: 30px;
  margin-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.article-meta .author {
  color: #f1f4f6;
  font-weight: 600;
}

.article-meta .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
}

.article-body {
  font-size: 1rem;
}

.article-body p {
  margin-bottom: 21px;
  color: #c4cad2;
  font-size: 1.015rem;
  line-height: 1.82;
}

.article-body h2,
.article-body h3,
.article-body h4 {
  color: var(--text);
}

.article-body h2 {
  position: relative;
  margin-top: 52px;
  padding-top: 4px;
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.65px;
}

.article-body h2::before {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--accent), #00c9ff);
  margin-bottom: 14px;
}

.article-body h3 {
  font-size: 1.18rem;
  margin-top: 36px;
  margin-bottom: 14px;
}

.article-body h4 {
  font-size: 0.95rem;
  letter-spacing: 0.1px;
  margin: 24px 0 10px;
  color: var(--accent);
}

.article-body ul,
.article-body ol {
  margin: 0 0 24px 24px;
  color: #cdd2d9;
}

.article-body li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.article-body strong {
  color: var(--text);
  font-weight: 700;
}

.article-body a {
  color: var(--accent);
  text-decoration: none;
}

.article-body a:hover {
  text-decoration: underline;
}

.article-body em {
  color: #cdd2d9;
}

.callout {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), transparent), var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 28px 0;
  box-shadow: var(--shadow-sm);
}

.callout.warn { border-left-color: var(--warn); }
.callout.danger { border-left-color: var(--danger); }

.callout-title {
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
  color: var(--accent);
}

.callout.warn .callout-title { color: var(--warn); }
.callout.danger .callout-title { color: var(--danger); }

.callout p { margin-bottom: 0; font-size: 0.92rem; }

.step {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 229, 160, 0.09);
  color: var(--accent);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-body h4 {
  margin-top: 4px;
  margin-bottom: 6px;
}

.step-body p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.article-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.next-reads {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.next-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), transparent), var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: var(--radius);
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  display: block;
  box-shadow: var(--shadow-sm);
}

.next-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.next-card .tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}

.next-card .title {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* ---------- NEWSLETTER ---------- */
.cta-section {
  background: radial-gradient(circle at 50% 0%, rgba(0, 229, 160, 0.055), transparent 42%), var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(0, 229, 160, 0.09), transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
  position: relative;
}

.cta-section p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 32px;
  position: relative;
}

.cta-form {
  display: flex;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
}

.cta-form input {
  flex: 1;
  padding: 14px 22px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease;
}

.cta-form input:focus {
  border-color: var(--accent);
}

.cta-form input::placeholder {
  color: var(--text-muted);
}

.cta-form input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 166, 35, 0.12);
  color: var(--warn);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
  position: relative;
}

.coming-soon-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
  position: relative;
}

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 40px 0;
  margin-top: 64px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
}

footer a:hover {
  color: var(--accent);
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.disclaimer {
  max-width: 640px;
  margin: 20px auto 0;
  font-size: 0.75rem;
  line-height: 1.6;
}

/* ---------- 404 ---------- */
.error-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}

.error-wrap::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0, 229, 160, 0.12), transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.error-inner {
  position: relative;
  max-width: 520px;
}

.error-code {
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -4px;
  background: linear-gradient(135deg, var(--accent), #00c9ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.error-inner h1 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.error-inner p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.6;
}

.error-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .nav-links { display: none; }

  .hero {
    padding: 68px 0 48px;
  }

  .stats-bar {
    gap: 0;
  }

  .stat-item {
    min-width: 50%;
    margin: 8px 0;
  }

  .stat-item + .stat-item::before {
    display: none;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .safety-banner {
    padding: 28px 24px;
  }

  .cta-section {
    padding: 44px 24px;
  }

  .cta-form {
    flex-direction: column;
  }

  .drop-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .drop-name {
    min-width: auto;
  }

  .article {
    padding: 40px 0 48px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-top: 54px;
  }

  .stats-bar {
    padding: 20px 0;
  }

  .stat-item {
    min-width: 50%;
  }

  .stat-value {
    font-size: 1.45rem;
  }

  .stat-label {
    font-size: 0.63rem;
  }

  .card-body {
    padding: 21px;
  }
}
