/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #FAFAF8;
  --bg-alt: #F2F1EE;
  --bg-dark: #0F0F0F;
  --text: #1A1A1A;
  --text-secondary: #6B6B6B;
  --text-tertiary: #9A9A9A;
  --border: #E5E4E0;
  --border-light: #EEEDEA;
  --accent: #E8453C;
  --accent-hover: #D03A32;
  --white: #FFFFFF;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Instrument Sans', -apple-system, sans-serif;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }

/* ===== LAYOUT ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container--wide { max-width: 1440px; margin: 0 auto; padding: 0 32px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-16px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 69, 60, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(232, 69, 60, 0); }
}

.anim-fade-up {
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.2s; }
.anim-delay-3 { animation-delay: 0.3s; }
.anim-delay-4 { animation-delay: 0.4s; }
.anim-delay-5 { animation-delay: 0.5s; }
.anim-delay-6 { animation-delay: 0.6s; }

/* ===== HEADER / NAV ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}
.header--scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.04); }

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.01em;
}
.nav__logo-icon {
  display: grid;
  grid-template-columns: 10px 10px;
  gap: 3px;
}
.nav__logo-icon span {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}
.nav__logo-icon span:nth-child(1) { background: #E8453C; }
.nav__logo-icon span:nth-child(2) { background: #F4A940; }
.nav__logo-icon span:nth-child(3) { background: #2D5BE3; }
.nav__logo-icon span:nth-child(4) { background: #18A558; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav__links a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__links a:hover {
  color: var(--text);
  background: var(--bg-alt);
}
.nav__links a svg { width: 16px; height: 16px; opacity: 0.6; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  font-size: 13px;
  color: var(--text-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: var(--transition);
}
.nav__search-btn:hover { border-color: #ccc; color: var(--text-secondary); }
.nav__search-btn svg { width: 14px; height: 14px; }
.nav__search-btn kbd {
  font-family: var(--font-body);
  font-size: 11px;
  padding: 1px 5px;
  background: var(--bg-alt);
  border-radius: 3px;
  color: var(--text-tertiary);
}

.nav__submit-btn {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  background: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__submit-btn:hover { background: #333; }

/* Mobile menu */
.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  padding: 140px 0 80px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 600px;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(232, 69, 60, 0.04), transparent),
              radial-gradient(ellipse 60% 40% at 20% 10%, rgba(45, 91, 227, 0.03), transparent),
              radial-gradient(ellipse 60% 40% at 80% 10%, rgba(244, 169, 64, 0.03), transparent);
  pointer-events: none;
}

.hero__content {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
  position: relative;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  background: rgba(232, 69, 60, 0.06);
  border: 1px solid rgba(232, 69, 60, 0.12);
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero__badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulseGlow 2s ease infinite;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  color: var(--text);
}
.hero__title em {
  font-style: italic;
  color: var(--accent);
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto 40px;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--text);
  color: var(--white);
}
.btn--primary:hover { background: #333; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.btn--secondary {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--secondary:hover { border-color: #ccc; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.btn--accent {
  background: var(--accent);
  color: var(--white);
}
.btn--accent:hover { background: var(--accent-hover); transform: translateY(-1px); }

.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border-light);
}
.hero__stat-value {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.hero__stat-label {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 4px;
}

/* ===== FILTER BAR ===== */
.filter-bar {
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 64px;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 50;
}
.filter-bar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.filter-bar__inner::-webkit-scrollbar { display: none; }

.filter-bar__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  margin-right: 4px;
}

.filter-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  white-space: nowrap;
  transition: var(--transition);
  cursor: pointer;
}
.filter-pill:hover { border-color: #ccc; color: var(--text); }
.filter-pill.active {
  background: var(--text);
  color: var(--white);
  border-color: var(--text);
}
.filter-pill svg { width: 14px; height: 14px; }

/* ===== FEATURED PALETTES ===== */
.section { padding: 80px 0; }
.section--alt { background: var(--bg-alt); }

.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 16px;
  flex-wrap: wrap;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 38px);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
  white-space: nowrap;
}
.section__link:hover { gap: 10px; }
.section__link svg { width: 16px; height: 16px; }

/* Palette Cards */
.palettes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
}

.palette-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition);
  cursor: pointer;
}
.palette-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  border-color: transparent;
}

.palette-card__colors {
  display: flex;
  height: 140px;
}
.palette-card__color {
  flex: 1;
  position: relative;
  transition: flex 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.palette-card:hover .palette-card__color:hover {
  flex: 1.8;
}
.palette-card__hex {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  font-family: 'SF Mono', 'Fira Code', monospace;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(8px);
  padding: 3px 8px;
  border-radius: 4px;
  opacity: 0;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}
.palette-card__color:hover .palette-card__hex { opacity: 1; }
.palette-card__hex.copied {
  background: rgba(24, 165, 88, 0.85);
}

.palette-card__info {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.palette-card__name {
  font-weight: 600;
  font-size: 15px;
}
.palette-card__tags {
  display: flex;
  gap: 6px;
}
.palette-card__tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  background: var(--bg-alt);
  border-radius: 100px;
  color: var(--text-tertiary);
}

/* ===== LIVE PREVIEW ===== */
.preview-section { padding: 80px 0; }

.preview-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

.preview-palettes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.preview-palette-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: var(--transition);
  text-align: left;
}
.preview-palette-btn:hover { background: var(--bg-alt); }
.preview-palette-btn.active {
  background: var(--white);
  border-color: var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.preview-palette-btn__swatches {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
}
.preview-palette-btn__swatch {
  width: 20px;
  height: 20px;
  border-radius: 4px;
}
.preview-palette-btn__name {
  font-size: 14px;
  font-weight: 500;
}
.preview-palette-btn__category {
  font-size: 12px;
  color: var(--text-tertiary);
}

.preview-mockup {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  transition: background 0.5s ease;
}
.preview-mockup__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-light);
}
.preview-mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}
.preview-mockup__body {
  padding: 40px;
  transition: all 0.5s ease;
}
.preview-mockup__heading {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 12px;
  transition: color 0.5s ease;
}
.preview-mockup__text {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 480px;
  transition: color 0.5s ease;
}
.preview-mockup__buttons {
  display: flex;
  gap: 12px;
}
.preview-mockup__btn {
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.5s ease;
  cursor: default;
}
.preview-mockup__btn--primary { color: white; }
.preview-mockup__btn--secondary { border: 2px solid; }

/* ===== CONTENT PILLARS (4 Columns) ===== */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pillar-card {
  position: relative;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: var(--white);
  transition: var(--transition);
  overflow: hidden;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border-color: transparent;
}
.pillar-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.pillar-card__icon svg { width: 24px; height: 24px; }

.pillar-card:nth-child(1) .pillar-card__icon { background: rgba(232, 69, 60, 0.08); color: #E8453C; }
.pillar-card:nth-child(2) .pillar-card__icon { background: rgba(45, 91, 227, 0.08); color: #2D5BE3; }
.pillar-card:nth-child(3) .pillar-card__icon { background: rgba(24, 165, 88, 0.08); color: #18A558; }
.pillar-card:nth-child(4) .pillar-card__icon { background: rgba(244, 169, 64, 0.08); color: #F4A940; }

.pillar-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.pillar-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.pillar-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}
.pillar-card__link:hover { gap: 10px; }
.pillar-card__link svg { width: 14px; height: 14px; }

/* ===== TREND REPORT BANNER ===== */
.trend-banner {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 56px;
  background: var(--bg-dark);
  color: var(--white);
}
.trend-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 40% 60% at 10% 90%, rgba(139, 92, 246, 0.25), transparent),
    radial-gradient(ellipse 50% 50% at 90% 20%, rgba(232, 69, 60, 0.15), transparent),
    radial-gradient(ellipse 40% 40% at 60% 80%, rgba(45, 91, 227, 0.12), transparent);
  pointer-events: none;
}
.trend-banner__content { position: relative; max-width: 560px; }
.trend-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.trend-banner__eyebrow svg { width: 16px; height: 16px; }
.trend-banner__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.trend-banner__desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}
.trend-banner__swatches {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 12px;
}
.trend-banner__swatch {
  width: 64px;
  height: 100px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* ===== LATEST ARTICLES ===== */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--white);
  transition: var(--transition);
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.article-card__image {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.article-card__category {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  color: var(--text);
}
.article-card__body { padding: 24px; }
.article-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.article-card__excerpt {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.article-card__meta {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* ===== QUICK TOOLS ===== */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tool-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: var(--white);
  transition: var(--transition);
}
.tool-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.tool-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  flex-shrink: 0;
}
.tool-card__icon svg { width: 20px; height: 20px; color: var(--text-secondary); }
.tool-card__name { font-weight: 600; font-size: 15px; margin-bottom: 2px; }
.tool-card__desc { font-size: 13px; color: var(--text-tertiary); }

/* ===== NEWSLETTER / SUBMIT ===== */
.cta-section {
  text-align: center;
  padding: 80px 0;
}
.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.cta-section__desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.cta-section__form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}
.cta-section__input {
  flex: 1;
  padding: 13px 18px;
  font-size: 15px;
  font-family: var(--font-body);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.cta-section__input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,69,60,0.08); }

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--border-light);
  padding: 60px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.footer__brand-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-top: 12px;
  max-width: 280px;
}
.footer__heading {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition);
}
.footer__links a:hover { color: var(--text); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  font-size: 13px;
  color: var(--text-tertiary);
}
.footer__bottom-links {
  display: flex;
  gap: 24px;
}
.footer__bottom-links a { color: var(--text-tertiary); transition: var(--transition); }
.footer__bottom-links a:hover { color: var(--text-secondary); }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  padding: 12px 24px;
  background: var(--bg-dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: 200;
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast svg { width: 16px; height: 16px; color: #18A558; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .trend-banner__swatches { display: none; }
  .preview-grid { grid-template-columns: 1fr; }
  .preview-palettes {
    flex-direction: row;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .preview-palettes::-webkit-scrollbar { display: none; }
  .preview-palette-btn { flex-shrink: 0; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav__links, .nav__search-btn { display: none; }
  .nav__mobile-toggle { display: flex; }
  .hero { padding: 110px 0 60px; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .palettes-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 0; }
  .trend-banner { padding: 36px 28px; }
  .filter-bar { top: 64px; }
  .cta-section__form { flex-direction: column; }
  .cta-section__input { width: 100%; }
}
