/* 
 * Pulp & Pelt - Coming Soon Design System (Updated)
 * Official Brand Colors: Clover Green (#004B23), Warm Gold (#B48E56)
 * Palette Details: Warm Organic flatlay background
 */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Official Brand Colors */
  --color-brand-green: #004B23;
  --color-brand-green-dark: #003619;
  --color-brand-gold: #B48E56;
  --color-brand-gold-light: #C9A874;
  
  /* UI Warm Palette */
  --color-almond: #E8DCCF;
  --color-sand: #D9C3A8;
  --color-clay-rose: #C9A79A;
  --color-sage: #A8B39B;
  --color-camel: #B7926A;
  --color-charcoal: #333333;
  --color-charcoal-light: #666666;
  
  /* Derived colors for premium contrast */
  --color-cream: #F8F5F0;
  --color-white: #FCFAF7;
  --color-glass-bg: rgba(252, 250, 247, 0.72);
  --color-accent-glow: rgba(0, 75, 35, 0.12);
  
  /* Fonts */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  --font-ui: 'Outfit', sans-serif;
  
  /* Shadows & Radius */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 10px 20px -5px rgba(0, 0, 0, 0.06), 0 4px 8px -2px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 30px -10px rgba(0, 0, 0, 0.1), 0 8px 12px -4px rgba(0, 0, 0, 0.04);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-cream);
  color: var(--color-charcoal);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  
  /* Organic Flatlay Background Image */
  background-image: linear-gradient(to bottom, rgba(248, 245, 240, 0.88), rgba(248, 245, 240, 0.94)), url('bg.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  padding: 20px 0;
  border-bottom: 1px solid rgba(180, 142, 86, 0.15);
  background-color: rgba(252, 250, 247, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrap-header {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.header-clover {
  color: var(--color-brand-green);
  transition: transform 0.6s ease;
}

.logo-wrap-header:hover .header-clover {
  transform: rotate(90deg);
}

.header-brand-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-brand-green);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-charcoal-light);
  text-decoration: none;
  transition: var(--transition-fast);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-brand-gold);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-brand-green);
}

.nav-link:hover::after {
  width: 100%;
}

.btn-header {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  background-color: var(--color-brand-green);
  color: var(--color-white);
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btn-header:hover {
  background-color: var(--color-brand-gold);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(180, 142, 86, 0.25);
}

/* Hero Section */
.hero {
  padding: 60px 0;
  text-align: center;
}

/* Brand Identity Card (recreating the business card aesthetic) */
.brand-identity-card {
  max-width: 680px;
  margin: 0 auto 40px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(180, 142, 86, 0.35);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.brand-identity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--color-brand-green), var(--color-brand-gold), var(--color-brand-green));
}

.brand-clover-wrap {
  margin-bottom: 16px;
  color: var(--color-brand-green);
  filter: drop-shadow(0 2px 4px rgba(0, 75, 35, 0.15));
}

.brand-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 6.5vw, 56px);
  font-weight: 700;
  color: var(--color-brand-green);
  letter-spacing: 6px;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 8px;
}

/* crafted with nature divider */
.brand-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 8px 0 16px;
  width: 100%;
  max-width: 440px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: var(--color-brand-gold);
  opacity: 0.6;
}

.divider-text {
  font-family: var(--font-serif);
  font-size: clamp(14px, 2.5vw, 19px);
  font-style: italic;
  font-weight: 400;
  color: var(--color-brand-green);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.company-name {
  font-family: var(--font-sans);
  font-size: clamp(15px, 2.5vw, 19px);
  font-weight: 500;
  color: var(--color-brand-gold);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.product-line-subtitle {
  font-family: var(--font-ui);
  font-size: clamp(10px, 1.8vw, 11px);
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-charcoal-light);
  max-width: 480px;
  text-align: center;
  line-height: 1.6;
  border-top: 1px dashed rgba(180, 142, 86, 0.2);
  padding-top: 12px;
}

/* Coming Soon Label Badge */
.coming-soon-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  color: var(--color-white);
  background-color: var(--color-brand-green);
  padding: 8px 30px 8px 35px;
  border-radius: var(--radius-sm);
  margin-top: 28px;
  box-shadow: 0 4px 12px rgba(0, 75, 35, 0.25);
  animation: float-tag 4s ease-in-out infinite;
}

@keyframes float-tag {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}

.hero-description-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.hero-description {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--color-charcoal-light);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn-primary {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  background-color: var(--color-brand-green);
  color: var(--color-white);
  border: none;
  padding: 12px 30px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(0, 75, 35, 0.2);
}

.btn-primary:hover {
  background-color: var(--color-brand-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(180, 142, 86, 0.3);
}

.btn-secondary {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.5);
  color: var(--color-brand-green);
  border: 1px solid rgba(180, 142, 86, 0.4);
  padding: 12px 30px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background-color: var(--color-white);
  border-color: var(--color-brand-green);
  transform: translateY(-2px);
}

/* Pantry Blend Mixer (Interactive Tool) */
.blender-section {
  padding: 70px 0;
  background-color: rgba(248, 245, 240, 0.3);
  border-top: 1px solid rgba(180, 142, 86, 0.15);
  border-bottom: 1px solid rgba(180, 142, 86, 0.15);
  margin-bottom: 60px;
}

.blender-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.blender-header h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--color-brand-green);
  margin-bottom: 12px;
}

.blender-header p {
  color: var(--color-charcoal-light);
  font-size: 15px;
}

.blender-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: start;
}

/* Glassmorphic card styling */
.customizer-card, .preview-card, .waitlist-card, .pillar-card {
  background: var(--color-glass-bg);
  border: 1px solid rgba(180, 142, 86, 0.25);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.control-group {
  margin-bottom: 24px;
}

.control-group:last-child {
  margin-bottom: 0;
}

.control-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.control-title h3 {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand-green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.control-title .pct {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-brand-gold);
  background: rgba(255, 255, 255, 0.6);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(180, 142, 86, 0.2);
}

.range-slider-wrapper {
  position: relative;
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: var(--radius-full);
  background: rgba(180, 142, 86, 0.2);
  outline: none;
  transition: var(--transition-fast);
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.range-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
  border: none;
}

/* Colors for specific thumbs */
#slider-pulp::-webkit-slider-thumb { background: var(--color-clay-rose); border: 2.5px solid var(--color-white); }
#slider-pulp::-moz-range-thumb { background: var(--color-clay-rose); border: 2.5px solid var(--color-white); }

#slider-flakes::-webkit-slider-thumb { background: var(--color-brand-gold); border: 2.5px solid var(--color-white); }
#slider-flakes::-moz-range-thumb { background: var(--color-brand-gold); border: 2.5px solid var(--color-white); }

#slider-chips::-webkit-slider-thumb { background: var(--color-sage); border: 2.5px solid var(--color-white); }
#slider-chips::-moz-range-thumb { background: var(--color-sage); border: 2.5px solid var(--color-white); }

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  color: var(--color-charcoal-light);
  margin-top: 6px;
}

/* Visual Blender Preview */
.preview-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

.preview-title {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-charcoal-light);
  margin-bottom: 20px;
}

/* Glass Jar Illustration */
.glass-jar {
  width: 130px;
  height: 200px;
  border: 5px solid var(--color-brand-green);
  border-bottom-width: 7px;
  border-radius: 18px 18px 14px 14px;
  position: relative;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05), inset 0 0 10px rgba(255, 255, 255, 0.6);
  overflow: hidden;
  display: flex;
  flex-direction: column-reverse;
}

.jar-lid {
  width: 90px;
  height: 16px;
  background: var(--color-brand-gold);
  border: 3.5px solid var(--color-brand-green);
  border-radius: 5px;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.jar-neck {
  width: 96px;
  height: 10px;
  border-left: 5px solid var(--color-brand-green);
  border-right: 5px solid var(--color-brand-green);
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  background: var(--color-white);
}

.jar-layer {
  width: 100%;
  height: 0%;
  transition: height 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}

.jar-layer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.layer-pulp { background: linear-gradient(90deg, #D4A392, var(--color-clay-rose), #B38E82); }
.layer-flakes { background: linear-gradient(90deg, #D5A87B, var(--color-brand-gold), #A67E56); }
.layer-chips { background: linear-gradient(90deg, #BDC8B1, var(--color-sage), #8F9A83); }

.jar-reflection {
  position: absolute;
  top: 10%;
  left: 8px;
  width: 10px;
  height: 80%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 15;
}

.jar-reflection-right {
  position: absolute;
  top: 15%;
  right: 6px;
  width: 5px;
  height: 70%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 15;
}

.empty-jar-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  color: var(--color-charcoal-light);
  width: 80%;
  text-align: center;
  z-index: 16;
  pointer-events: none;
  transition: var(--transition-fast);
}

.empty-jar-label.hidden { opacity: 0; }

.blend-results {
  width: 100%;
  margin-top: 24px;
  border-top: 1px solid rgba(180, 142, 86, 0.15);
  padding-top: 20px;
}

.blend-recipe { margin-bottom: 16px; }

.recipe-title {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-brand-gold);
  margin-bottom: 4px;
}

.recipe-name {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-brand-green);
  margin-bottom: 4px;
}

.recipe-desc {
  font-size: 13px;
  color: var(--color-charcoal-light);
}

.metrics-title {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-charcoal-light);
  margin-bottom: 10px;
}

.flavor-bars { display: flex; flex-direction: column; gap: 8px; }
.flavor-row { display: flex; align-items: center; font-family: var(--font-ui); font-size: 12px; font-weight: 600; }
.flavor-name { width: 70px; color: var(--color-brand-green); }
.flavor-bar-bg { flex: 1; height: 6px; background: rgba(180, 142, 86, 0.15); border-radius: var(--radius-full); overflow: hidden; margin: 0 12px; }
.flavor-bar-fill { height: 100%; width: 0%; border-radius: var(--radius-full); transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); }

#bar-sweet { background-color: var(--color-clay-rose); }
#bar-tangy { background-color: var(--color-brand-gold); }
#bar-earthy { background-color: var(--color-sage); }

.flavor-val { width: 25px; text-align: right; color: var(--color-charcoal-light); }

/* Early Access Section */
.early-access-section {
  padding: 30px 0 70px;
}

.waitlist-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 45px 35px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(180, 142, 86, 0.35);
}

.waitlist-card::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 2px solid var(--color-brand-gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  pointer-events: none;
}

.waitlist-card h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 36px);
  color: var(--color-brand-green);
  margin-bottom: 12px;
}

.waitlist-card p {
  color: var(--color-charcoal-light);
  max-width: 500px;
  margin: 0 auto 28px;
  font-size: 15px;
}

.waitlist-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  background: var(--color-white);
  padding: 6px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(180, 142, 86, 0.3);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.waitlist-form:focus-within {
  border-color: var(--color-brand-green);
  box-shadow: 0 0 0 4px var(--color-accent-glow);
}

.waitlist-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 10px 18px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-charcoal);
}

.waitlist-input::placeholder { color: var(--color-sand); }

.waitlist-submit {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  background-color: var(--color-brand-green);
  color: var(--color-white);
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
}

.waitlist-submit:hover {
  background-color: var(--color-brand-gold);
}

/* Success Card */
.success-card { display: none; animation: fadeIn 0.5s ease forwards; }

.success-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 75, 35, 0.1);
  border: 2px solid var(--color-brand-green);
  border-radius: 50%;
  color: var(--color-brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 16px;
}

.success-title {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--color-brand-green);
  margin-bottom: 8px;
}

.queue-badge {
  display: inline-block;
  background: var(--color-brand-green);
  color: var(--color-white);
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin: 12px 0;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 75, 35, 0.2);
}

.success-text { font-size: 14px; color: var(--color-charcoal-light); max-width: 440px; margin: 0 auto; }

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

/* Pillars Section */
.pillars-section {
  padding: 50px 0 80px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pillar-card {
  text-align: center;
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-brand-green);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 75, 35, 0.05);
  color: var(--color-brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 20px;
  transition: var(--transition-fast);
}

.pillar-card:hover .pillar-icon {
  background: var(--color-brand-green);
  color: var(--color-white);
}

.pillar-card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  color: var(--color-brand-green);
  margin-bottom: 10px;
}

.pillar-card p {
  font-size: 13.5px;
  color: var(--color-charcoal-light);
  line-height: 1.6;
}

/* Footer */
.footer {
  background-color: #1A261E; /* A very dark deep forest green black */
  color: var(--color-almond);
  padding: 50px 0 25px;
  border-top: 1px solid var(--color-brand-green);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-brand { max-width: 320px; }

.footer-logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  margin-bottom: 4px;
  display: inline-block;
  letter-spacing: 0.5px;
}

.footer-logo span { color: var(--color-brand-gold); }

.footer-tagline {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-brand-gold);
  margin-bottom: 12px;
}

.footer-desc { font-size: 13px; color: #8F9A92; line-height: 1.5; }
.footer-links-wrap { display: flex; gap: 60px; }
.footer-col h4 {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 12px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #8F9A92; text-decoration: none; font-size: 13px; transition: var(--transition-fast); }
.footer-col ul li a:hover { color: var(--color-brand-gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #717D74;
  flex-wrap: wrap;
  gap: 15px;
}

.social-links { display: flex; gap: 12px; }

.social-link {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  color: var(--color-almond);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-fast);
}

.social-link:hover {
  background: var(--color-brand-green);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Media Queries */
@media (max-width: 992px) {
  .blender-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .header-container { flex-direction: column; gap: 12px; }
  .nav-links { gap: 20px; }
  .hero { padding: 40px 0; }
  .brand-identity-card { padding: 36px 20px; margin-bottom: 30px; }
  
  .hero-ctas { flex-direction: column; align-items: center; gap: 10px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; max-width: 300px; }
  
  .pillars-grid { grid-template-columns: 1fr; gap: 16px; }
  .waitlist-card { padding: 30px 16px; }
  
  .waitlist-form {
    flex-direction: column;
    border-radius: var(--radius-md);
    background: transparent;
    border: none;
    box-shadow: none;
    gap: 10px;
    padding: 0;
  }
  
  .waitlist-input {
    background: var(--color-white);
    border: 1px solid rgba(180, 142, 86, 0.25);
    border-radius: var(--radius-full);
    width: 100%;
  }
  
  .waitlist-submit { width: 100%; padding: 12px 0; }
  .footer-links-wrap { gap: 30px; width: 100%; justify-content: space-between; }
}

@media (max-width: 480px) {
  .nav-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .footer-links-wrap { flex-direction: column; gap: 20px; }
}
