@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg-dark: #0b0f19;
  --bg-card: #151c2c;
  --bg-card-hover: #1e293b;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(255, 255, 255, 0.15);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --insta-gradient: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  --insta-accent: #e1306c;
  
  --pinterest-gradient: linear-gradient(135deg, #e60023, #b6001a);
  --pinterest-accent: #e60023;
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.5);
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Header & Controls */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 32px;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--insta-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 24px;
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.45), 0 0 0 2px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.brand:hover .brand-icon {
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.65), 0 0 0 2px rgba(255, 255, 255, 0.25);
  transform: rotate(-3deg) scale(1.05);
}

.brand h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.8px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(225, 48, 108, 0.45));
}

/* Nav Options / Tabs */
.nav-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  padding: 6px;
  border-radius: 9999px;
  border: 1px solid var(--border-color);
  gap: 4px;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-btn:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active.instagram {
  background: var(--insta-gradient);
  color: white;
  box-shadow: 0 4px 16px rgba(225, 48, 108, 0.4);
}

.tab-btn.active.pinterest {
  background: var(--pinterest-gradient);
  color: white;
  box-shadow: 0 4px 16px rgba(230, 0, 35, 0.4);
}

.tab-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Main Container */
main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 32px 64px 32px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-count {
  font-size: 13px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

/* Instagram Sub-navigation Tabs */
.subnav-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.subnav-btn {
  padding: 10px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.subnav-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
}

.subnav-btn.active {
  background: var(--insta-gradient);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.3);
}

/* Brand Dropdown Container */
.brand-dropdown-container {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.explore-controls-container {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.explore-dropdown-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-select-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.brand-select-dropdown {
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-highlight);
  color: var(--text-main);
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-md);
  outline: none;
  cursor: pointer;
  min-width: 140px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.brand-select-dropdown:focus {
  border-color: var(--insta-accent);
  box-shadow: 0 0 0 3px rgba(225, 48, 108, 0.2);
}

/* Placeholder for Empty Views */
.no-data-placeholder {
  text-align: center;
  padding: 80px 20px;
  background: rgba(21, 28, 44, 0.4);
  border: 1px dashed var(--border-color);
  border-radius: var(--radius-lg);
  color: var(--text-muted);
  margin-top: 10px;
}

.no-data-placeholder svg {
  width: 54px;
  height: 54px;
  fill: var(--text-dim);
  margin-bottom: 16px;
}

.no-data-placeholder h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.no-data-placeholder p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Filter Bar Styles */
.filter-bar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  padding: 16px 20px;
  background: rgba(21, 28, 44, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
}

.filter-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-right: 6px;
  min-width: 100px;
}

.filter-btn {
  padding: 7px 16px;
  border-radius: 9999px;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-main);
  border-color: var(--border-highlight);
}

.filter-btn.active {
  background: var(--text-main);
  color: #0b0f19;
  border-color: var(--text-main);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

#section-instagram .filter-btn.active {
  background: var(--insta-accent);
  color: white;
  border-color: var(--insta-accent);
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.3);
}

#section-pinterest .filter-btn.active {
  background: var(--pinterest-accent);
  color: white;
  border-color: var(--pinterest-accent);
  box-shadow: 0 4px 12px rgba(230, 0, 35, 0.3);
}

.category-badge {
  display: none;
  margin-left: auto;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  text-transform: capitalize;
}

/* Tab Views */
.tab-content {
  display: none;
  animation: fadeIn 0.35s ease forwards;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Card Grid */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

/* Instagram Cards */
.insta-card {
  display: block;
  text-decoration: none;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  color: inherit;
  position: relative;
}

.insta-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-highlight);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(225, 48, 108, 0.15);
  background: var(--bg-card-hover);
}

.insta-media-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #000;
}

.insta-media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insta-card:hover .insta-media-wrapper img {
  transform: scale(1.06);
}

/* Play Button Overlay for Reels */
.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.play-icon {
  width: 22px;
  height: 22px;
  fill: white;
  margin-left: 3px;
  transition: transform 0.3s ease;
}

.insta-card:hover .play-button-overlay {
  background: var(--insta-gradient);
  transform: translate(-50%, -50%) scale(1.1);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.5);
}

.insta-card:hover .play-icon {
  transform: scale(1.1);
}

.insta-info {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--border-color);
}

.insta-views-container {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  width: 100%;
}

.insta-views-icon {
  width: 18px;
  height: 18px;
  fill: var(--insta-accent);
}

/* Pinterest Cards */
.pin-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.pin-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-highlight);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(230, 0, 35, 0.15);
  background: var(--bg-card-hover);
}

.pin-media-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #000;
}

.pin-media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pin-card:hover .pin-media-wrapper img {
  transform: scale(1.05);
}

.pin-likes-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 12px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: white;
}

.pin-like-icon {
  width: 15px;
  height: 15px;
  fill: #38bdf8;
}

.pin-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.pin-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.pin-likes-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.pin-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: var(--pinterest-gradient);
  color: white;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(230, 0, 35, 0.25);
}

.pin-action-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(230, 0, 35, 0.4);
}

.btn-arrow {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.pin-action-btn:hover .btn-arrow {
  transform: translateX(3px) translateY(-3px);
}

/* Load More Container & Button */
.load-more-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 20px;
}

.load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 9999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

#section-instagram .load-more-btn {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 18px rgba(225, 48, 108, 0.4);
}

#section-instagram .load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.6);
  filter: brightness(1.08);
}

#section-pinterest .load-more-btn {
  background: linear-gradient(135deg, #e60023 0%, #ad001a 100%);
  box-shadow: 0 4px 18px rgba(230, 0, 35, 0.4);
}

#section-pinterest .load-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 0, 35, 0.6);
  filter: brightness(1.08);
}

.load-more-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.load-more-btn:hover .load-more-icon {
  transform: translateY(3px);
}

/* User Profile & Logout Controls in Header */
.user-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.user-greeting {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: 9999px;
  border: 1px solid var(--border-color);
}

.logout-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 9999px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #f87171;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.logout-btn:hover {
  background: rgba(239, 68, 68, 0.2);
  border-color: #f87171;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.logout-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* LOGIN PAGE STYLES */
.login-body {
  background: radial-gradient(circle at top right, rgba(225, 48, 108, 0.12), transparent 40%),
              radial-gradient(circle at bottom left, rgba(230, 0, 35, 0.12), transparent 40%),
              var(--bg-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.login-container {
  width: 100%;
  max-width: 440px;
}

.login-card {
  position: relative;
  background: rgba(21, 28, 44, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-highlight);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 40px rgba(225, 48, 108, 0.1);
  animation: loginFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.login-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s ease;
  z-index: 10;
}

.login-close-btn:hover {
  background: rgba(225, 48, 108, 0.2);
  color: #ffffff;
  border-color: var(--insta-accent);
  transform: rotate(90deg) scale(1.08);
  box-shadow: 0 0 12px rgba(225, 48, 108, 0.4);
}

.close-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

@keyframes loginFadeIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.login-brand {
  text-align: center;
  margin-bottom: 32px;
}

.login-brand .brand-icon {
  width: 56px;
  height: 56px;
  font-size: 26px;
  margin: 0 auto 16px auto;
  border-radius: var(--radius-md);
  background: var(--insta-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.4);
}

.login-brand h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(225, 48, 108, 0.4));
}

.login-subtitle {
  font-size: 14px;
  color: var(--text-muted);
}

.login-error-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 500;
  margin-bottom: 24px;
  animation: shake 0.3s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

.alert-icon {
  width: 20px;
  height: 20px;
  fill: #ef4444;
  flex-shrink: 0;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  width: 20px;
  height: 20px;
  fill: var(--text-dim);
  transition: fill 0.2s ease;
  pointer-events: none;
}

.input-wrapper input {
  width: 100%;
  padding: 13px 44px 13px 44px;
  background: rgba(11, 15, 25, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  outline: none;
  transition: all 0.25s ease;
}

.input-wrapper input:focus {
  border-color: var(--insta-accent);
  background: rgba(11, 15, 25, 0.9);
  box-shadow: 0 0 0 3px rgba(225, 48, 108, 0.2);
}

.input-wrapper input:focus ~ .input-icon,
.input-wrapper input:focus + .input-icon {
  fill: var(--insta-accent);
}

.toggle-password-btn {
  position: absolute;
  right: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
}

.eye-icon {
  width: 20px;
  height: 20px;
  fill: var(--text-muted);
  transition: fill 0.2s ease;
}

.toggle-password-btn:hover .eye-icon {
  fill: var(--text-main);
}

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  margin-top: -4px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
}

.checkbox-container input {
  accent-color: var(--insta-accent);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

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

.forgot-link:hover {
  color: var(--insta-accent);
  text-decoration: underline;
}

.login-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  background: var(--insta-gradient);
  color: white;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(225, 48, 108, 0.35);
}

.login-submit-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.5);
}

.btn-arrow-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.login-submit-btn:hover .btn-arrow-icon {
  transform: translateX(4px);
}

.login-footer-hint {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  text-align: center;
  font-size: 13px;
  color: var(--text-dim);
}

.login-footer-hint code {
  background: rgba(255, 255, 255, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
  color: var(--text-main);
  font-family: monospace;
  font-size: 13px;
}

/* ==========================================================================
   PUBLIC LANDING PAGE STYLES (SOCIAL TREND)
   ========================================================================== */

.landing-body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
}

.landing-navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(11, 15, 25, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-color);
  padding: 16px 32px;
}

.landing-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 32px;
}

.landing-nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.landing-nav-link:hover {
  color: var(--text-main);
}

.landing-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}

.landing-btn-login {
  background: var(--insta-gradient);
  color: white;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 9999px;
  box-shadow: 0 4px 16px rgba(225, 48, 108, 0.35);
  transition: all 0.25s ease;
  display: inline-block;
}

.landing-btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.5);
  color: white;
}

.landing-btn-cta {
  background: var(--insta-gradient);
  color: white;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 9999px;
  box-shadow: 0 4px 16px rgba(225, 48, 108, 0.35);
  transition: all 0.25s ease;
}

.landing-btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(225, 48, 108, 0.5);
}

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: 80px 24px 60px 24px;
  background: radial-gradient(circle at 50% 10%, rgba(225, 48, 108, 0.15), transparent 50%),
              radial-gradient(circle at 80% 40%, rgba(230, 0, 35, 0.1), transparent 45%);
  text-align: center;
  overflow: hidden;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tagline {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 4px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 12px rgba(225, 48, 108, 0.45));
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  color: var(--text-main);
}

.gradient-text {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(225, 48, 108, 0.35));
  display: inline-block;
}

.hero-subtitle {
  font-size: 19px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
}

.btn-primary-gradient {
  background: var(--insta-gradient);
  color: white;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 9999px;
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
  transition: all 0.25s ease;
}

.btn-primary-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(225, 48, 108, 0.6);
}

.btn-secondary-outline {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-highlight);
  color: var(--text-main);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 9999px;
  transition: all 0.25s ease;
}

.btn-secondary-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* HERO CARDS PREVIEW GRID */
.hero-cards-preview {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin-top: 10px;
}

.hero-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.3s ease;
}

.preview-card:hover {
  transform: translateY(-6px);
}

.card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-badge {
  display: none;
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 4px;
}

.card-info {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  border-top: 1px solid var(--border-color);
}

.cat-tag {
  display: none;
  font-size: 11px;
  color: var(--text-muted);
}

.hero-blur-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--bg-dark), transparent);
  pointer-events: none;
}

/* GENERAL LANDING SECTIONS */
.landing-section {
  padding: 80px 24px;
}

.dark-alt-bg {
  background: rgba(21, 28, 44, 0.4);
  border-y: 1px solid var(--border-color);
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading-center {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading-left {
  text-align: left;
  margin-bottom: 40px;
}

.section-headline {
  font-family: 'Outfit', sans-serif;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.section-subtext {
  font-size: 17px;
  color: var(--text-muted);
}

.section-tag {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--insta-accent);
  display: block;
  margin-bottom: 8px;
}

/* PLATFORM TABS */
.platform-tabs {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.04);
  padding: 6px;
  border-radius: 9999px;
  border: 1px solid var(--border-highlight);
  margin-top: 24px;
  gap: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.platform-tab {
  padding: 10px 28px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-tab:hover:not(.active) {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.08);
}

.platform-tab.active,
.platform-tab-insta.active {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(225, 48, 108, 0.45);
}

.platform-tab-pin.active {
  background: linear-gradient(135deg, #e60023 0%, #ad001a 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(230, 0, 35, 0.45);
}

/* LANDING CARDS GRID */
.landing-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.landing-card {
  display: block;
  text-decoration: none;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: inherit;
  transition: all 0.3s ease;
  position: relative;
}

.landing-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-highlight);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(225, 48, 108, 0.15);
}

.card-badge-row {
  display: none;
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 10;
}

.badge-trending {
  display: none;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.card-footer {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
}

.stat-group {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
}

.badge-growth {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

/* VALUE PILLARS */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 24px;
}

.pillar-card {
  position: relative;
  background: rgba(21, 28, 44, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 44px 34px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4);
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--insta-gradient);
  opacity: 0.6;
  transition: opacity 0.3s ease, height 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-8px);
  background: rgba(25, 33, 50, 0.85);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6), 0 0 30px rgba(225, 48, 108, 0.2);
}

.pillar-card:hover::before {
  opacity: 1;
  height: 3px;
}

.pillar-icon {
  display: none;
}

.pillar-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.6px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(225, 48, 108, 0.45));
  display: inline-block;
}

.pillar-bold {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 12px;
  line-height: 1.45;
  letter-spacing: -0.2px;
}

.pillar-desc {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
  letter-spacing: 0.1px;
}

/* RISING FAST GRID */
.rising-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.rising-card {
  display: block;
  text-decoration: none;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: inherit;
  transition: all 0.3s ease;
}

.rising-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-highlight);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(225, 48, 108, 0.2);
}

.rising-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.rising-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rising-growth-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(11, 15, 25, 0.85);
  backdrop-filter: blur(8px);
  color: #fbcfe8;
  border: 1px solid rgba(244, 114, 182, 0.4);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(225, 48, 108, 0.25);
}

.rising-info {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rising-stat-main {
  font-size: 15px;
  font-weight: 700;
}

.rising-growth-text {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

/* PLATFORM PANELS */
.platform-panels-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.platform-panel {
  position: relative;
  border-radius: 24px;
  padding: 48px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.platform-panel:hover {
  transform: translateY(-6px);
}

.platform-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.insta-bg { background: var(--insta-gradient); }
.pin-bg { background: var(--pinterest-gradient); }

.platform-panel h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.platform-panel p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.panel-link {
  color: var(--text-main);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  transition: opacity 0.2s ease;
}

.panel-link:hover {
  opacity: 0.8;
}

/* CATEGORIES PILLS */
.categories-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.category-pill {
  padding: 12px 24px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.category-pill:hover {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

/* EXPLORE SHOWCASE IMAGES (SECTION 7) */
.explore-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1240px;
  margin: 0 auto;
}

.explore-image-card {
  display: block;
  background: rgba(21, 28, 44, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  position: relative;
}

.explore-image-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  opacity: 0.6;
  transition: opacity 0.3s ease, height 0.3s ease;
  z-index: 5;
}

.explore-image-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.7), 0 0 35px rgba(225, 48, 108, 0.3);
}

.explore-image-card:hover::before {
  opacity: 1;
  height: 4px;
}

.explore-image-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.explore-image-card:hover img {
  transform: scale(1.02);
}

/* TREND RADAR MOCKUP */
.trend-radar-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.radar-preview-mockup {
  background: rgba(11, 15, 25, 0.8);
  border: 1px solid var(--border-highlight);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.mockup-window {
  display: flex;
  flex-direction: column;
}

.window-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-color);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #eab308; }
.dot.green { background: #22c55e; }

.window-title {
  font-size: 12px;
  color: var(--text-dim);
  margin-left: 8px;
}

.mockup-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-title-bar {
  margin-bottom: -4px;
}

.mock-tab-header {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  background: var(--insta-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mockup-subnav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mock-btn {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 11.5px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
}

.mock-btn.active {
  background: var(--insta-gradient);
  color: white;
}

.mockup-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11.5px;
  color: var(--text-muted);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.mockup-filter strong {
  color: var(--text-main);
}

.highlight-filter {
  color: var(--insta-accent) !important;
}

.mockup-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.mock-card-item {
  background: var(--bg-card);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease;
}

.mock-card-item:hover {
  transform: scale(1.03);
}

.mock-card-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.mock-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mock-card-stat {
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-main);
  background: rgba(11, 15, 25, 0.9);
  text-align: center;
  border-top: 1px solid var(--border-color);
}

.radar-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.radar-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* FINAL CTA SECTION & UNIFIED CTA */
.unified-final-cta {
  margin-top: 72px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  position: relative;
  z-index: 10;
}

.unified-final-cta .cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.unified-final-cta .cta-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.final-cta-section {
  position: relative;
  padding: 100px 24px;
  text-align: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.cta-glow-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(225, 48, 108, 0.25), transparent 70%);
  pointer-events: none;
}

.cta-container {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 19px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.btn-cta-large {
  display: inline-block;
  background: var(--insta-gradient);
  color: white;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 44px;
  border-radius: 9999px;
  box-shadow: 0 8px 30px rgba(225, 48, 108, 0.5);
  transition: all 0.25s ease;
}

.btn-cta-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(225, 48, 108, 0.7);
}

/* FOOTER */
.landing-footer {
  border-top: 1px solid var(--border-color);
  padding: 60px 32px;
  background: rgba(11, 15, 25, 0.95);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand-col .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-dim);
}

.footer-links-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-main);
}

.footer-links-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-links-col a:hover {
  color: var(--text-main);
}

/* RESPONSIVE LAYOUT */
@media (max-width: 992px) {
  .hero-title { font-size: 42px; }
  .hero-cards-grid, .landing-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid, .rising-grid, .platform-panels-grid { grid-template-columns: 1fr; }
  .trend-radar-split { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .hero-title { font-size: 32px; }
  .hero-cards-grid, .landing-cards-grid { grid-template-columns: 1fr; }
  .landing-nav-links { display: none; }
}

