/* =============================================================
   ALPENGLOW PRESERVATION 4.0
   Brand: Deep Night #060412 | Alpenglow Purple #6B3FA0
          Pink #C2527A | Rose #D4847A | Sunset Orange #E8935A
          Alpine Gold #D4A862 | Summit Snow #F7F4F0
   Fonts: Outfit 800/700/400 (display) | Sora 600/400/300 (body)
   Design: Premium, editorial, cinematic
============================================================= */

/* ===================================================================
   VARIABLES / TOKENS
=================================================================== */
:root {
  /* Brand colors */
  --deep-night:       #060412;
  --midnight:         #0C0720;
  --dusk:             #160B30;
  --alpenglow-purple: #6B3FA0;
  --alpenglow-pink:   #C2527A;
  --alpenglow-rose:   #D4847A;
  --sunset-orange:    #E8935A;
  --alpine-gold:      #D4A862;
  --summit-snow:      #F7F4F0;
  --text-muted:       #6B7A8D;
  --white:            #FFFFFF;

  /* Semantic aliases */
  --forest-night:     #0C0720;

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body:    'Sora', sans-serif;

  /* Border radius — 4.0 uses modern values */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* Borders */
  --border-light: rgba(15, 31, 61, 0.11);
  --border-dark:  rgba(247, 244, 240, 0.09);

  /* Shadows */
  --shadow-sm: 0 1px 6px  rgba(6, 4, 18, 0.14);
  --shadow-md: 0 4px 24px rgba(6, 4, 18, 0.22);
  --shadow-lg: 0 8px 48px rgba(6, 4, 18, 0.32);
  --shadow-card-hover: 0 16px 48px rgba(6, 4, 18, 0.5);

  /* Layout */
  --max-width:  1200px;
  --nav-height: 70px;

  /* Transitions */
  --transition: 0.2s ease;
  --transition-slow: 0.35s ease;
}


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

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  font-family: var(--font-body);
  color: var(--forest-night);
  background: var(--summit-snow);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

section[id] { scroll-margin-top: var(--nav-height); }


/* ===================================================================
   CONTAINERS
=================================================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 780px;
  margin: 0 auto;
}


/* ===================================================================
   BUTTONS
=================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: background var(--transition), border-color var(--transition),
              color var(--transition), transform 0.15s ease,
              box-shadow var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn-sm  { padding: 0.55rem 1.25rem; font-size: 0.72rem; }
.btn-lg  { padding: 0.9rem  2.1rem;  font-size: 0.82rem; }
.btn-full { width: 100%; }

/* Primary — sunset orange */
.btn-primary {
  background: var(--sunset-orange);
  color: var(--white);
  border-color: var(--sunset-orange);
}
.btn-primary:hover {
  background: #d97e44;
  border-color: #d97e44;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232, 147, 90, 0.4);
}

/* Ghost — transparent with white border */
.btn-ghost {
  background: transparent;
  color: var(--summit-snow);
  border-color: rgba(247, 244, 240, 0.35);
}
.btn-ghost:hover {
  background: rgba(247, 244, 240, 0.1);
  border-color: rgba(247, 244, 240, 0.65);
  transform: translateY(-1px);
}

/* Outline — dark outline for light backgrounds */
.btn-outline {
  background: transparent;
  color: var(--summit-snow);
  border-color: rgba(247, 244, 240, 0.28);
}
.btn-outline:hover {
  background: rgba(247, 244, 240, 0.09);
  border-color: rgba(247, 244, 240, 0.55);
  transform: translateY(-1px);
}


/* ===================================================================
   SECTION TYPOGRAPHY
=================================================================== */
.section-eyebrow {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--alpenglow-purple);
  margin-bottom: 0.75rem;
}

.section-eyebrow.light { color: var(--alpenglow-rose); }
.section-eyebrow.pink  { color: var(--alpenglow-pink); }
.section-eyebrow.dark  { color: var(--alpenglow-purple); }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.18;
  color: var(--deep-night);
  margin-bottom: 1rem;
}

.section-title.light { color: var(--summit-snow); }
.section-title.dark  { color: var(--deep-night); }

.section-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 620px;
}

.section-sub.light { color: rgba(247, 244, 240, 0.65); }

.inline-link {
  color: var(--sunset-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ===================================================================
   NAVIGATION
=================================================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(6, 4, 18, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(247, 244, 240, 0.06);
  transition: box-shadow var(--transition-slow), background var(--transition-slow);
}

.nav--scrolled {
  background: rgba(6, 4, 18, 0.97);
  box-shadow: 0 4px 32px rgba(6, 4, 18, 0.6);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
}

.logo-mark { flex-shrink: 0; }

.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.82rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--summit-snow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 244, 240, 0.72);
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover {
  color: var(--summit-snow);
  background: rgba(247, 244, 240, 0.07);
}

.nav-links .btn-primary {
  color: var(--white);
  margin-left: 0.5rem;
}

/* Nav — coming soon badge */
.nav-link--cs { position: relative; }
.cs-badge {
  position: absolute;
  top: -6px;
  right: -4px;
  background: var(--sunset-orange);
  color: var(--white);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--summit-snow);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}


/* ===================================================================
   HERO
=================================================================== */
.hero {
  position: relative;
  background: var(--deep-night);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 50% 0%, rgba(107, 63, 160, 0.3) 0%, transparent 65%),
    radial-gradient(ellipse 45% 40% at 80% 20%, rgba(194, 82, 122, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 55% 45% at 20% 30%, rgba(6, 4, 18, 0.8) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: 60% 40%;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 2rem 3rem;
  width: 100%;
  gap: 3rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Hero badge pill */
.hero-badge-pill {
  display: inline-block;
  background: linear-gradient(135deg, rgba(212, 168, 98, 0.25), rgba(232, 147, 90, 0.2));
  border: 1px solid rgba(212, 168, 98, 0.45);
  color: var(--alpine-gold);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.2rem;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 244, 240, 0.55);
  margin-bottom: 1.1rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 1.05;
  color: var(--summit-snow);
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
}

.hero-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.72;
  color: rgba(247, 244, 240, 0.65);
  max-width: 520px;
  margin-bottom: 2.2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.8rem;
}

/* Hero stats pill */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(247, 244, 240, 0.06);
  border: 1px solid rgba(247, 244, 240, 0.1);
  border-radius: var(--radius-lg);
  padding: 0.9rem 1.6rem;
  gap: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.4rem;
}

.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child  { padding-right: 0; }

.hero-stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--summit-snow);
}

.hero-stat-label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: rgba(247, 244, 240, 0.45);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(247, 244, 240, 0.12);
}

/* Hero bag visual */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bag-svg {
  width: 100%;
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(107, 63, 160, 0.35))
          drop-shadow(0 0 40px rgba(194, 82, 122, 0.15));
  animation: bagFloat 6s ease-in-out infinite;
}

@keyframes bagFloat {
  0%, 100% { transform: translateY(0);    }
  50%       { transform: translateY(-12px); }
}

/* Mountain silhouette */
.hero-mountain {
  position: relative;
  z-index: 3;
  line-height: 0;
  margin-top: auto;
}

.hero-mountain svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 160px;
}


/* ===================================================================
   SCROLL REVEAL ANIMATION
=================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===================================================================
   TRUST BAR
=================================================================== */
.trust-bar {
  background: var(--midnight);
  border-top: 1px solid rgba(247, 244, 240, 0.06);
  border-bottom: 1px solid rgba(247, 244, 240, 0.06);
  overflow: hidden;
  padding: 0.85rem 0;
}

.trust-track {
  width: 100%;
  overflow: hidden;
}

.trust-reel {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
  width: max-content;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 244, 240, 0.72);
  padding: 0 1.6rem;
}

.trust-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--alpenglow-rose);
}

.trust-sep {
  font-size: 0.55rem;
  color: rgba(247, 244, 240, 0.2);
  flex-shrink: 0;
}


/* ===================================================================
   VALUE PROPOSITIONS (Why Alpenglow)
=================================================================== */
.value-props {
  background: var(--deep-night);
  padding: 6rem 0;
}

.value-props .section-eyebrow { color: var(--alpenglow-purple); }

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: border-color var(--transition), background var(--transition);
}

.value-card:hover {
  border-color: rgba(107, 63, 160, 0.35);
  background: rgba(107, 63, 160, 0.06);
}

.value-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.4rem;
}

.value-icon svg { width: 100%; height: 100%; }

.value-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--summit-snow);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(247, 244, 240, 0.58);
}


/* ===================================================================
   FEATURED PRODUCTS (First Batch)
=================================================================== */
.first-batch {
  background: var(--summit-snow);
  padding: 6rem 0;
}

.first-batch .section-sub {
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* Featured card variant */
.product-card--featured {
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--midnight);
  border: 1px solid rgba(247, 244, 240, 0.06);
  transition: transform var(--transition-slow), box-shadow var(--transition-slow),
              border-color var(--transition);
}

.product-card--featured:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(107, 63, 160, 0.3);
}

.product-img--featured {
  aspect-ratio: 4 / 3;
  position: relative;
  min-height: 220px;
}

.first-batch-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--sunset-orange), var(--alpine-gold));
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
}

/* Featured card product info overrides */
.product-card--featured .product-info {
  padding: 1.6rem;
}

.product-card--featured .product-name {
  font-size: 1.25rem;
}

.product-card--featured .product-desc {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.featured-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.size-pill {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 244, 240, 0.55);
  background: rgba(247, 244, 240, 0.06);
  border: 1px solid rgba(247, 244, 240, 0.1);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
}


/* ===================================================================
   USE CASES
=================================================================== */
.use-cases {
  background: var(--deep-night);
  padding: 6rem 0;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.use-case-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color var(--transition), background var(--transition),
              transform var(--transition);
}

.use-case-card:hover {
  border-color: rgba(194, 82, 122, 0.3);
  background: rgba(194, 82, 122, 0.05);
  transform: translateY(-3px);
}

.use-case-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.1rem;
}

.use-case-icon svg { width: 100%; height: 100%; }

.use-case-card h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--summit-snow);
  margin-bottom: 0.6rem;
}

.use-case-card p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(247, 244, 240, 0.52);
}


/* ===================================================================
   FOUNDER STORY (Our Story)
=================================================================== */
.our-story {
  background: var(--summit-snow);
  padding: 6rem 0;
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}

.story-text .section-eyebrow { color: var(--alpenglow-purple); }
.story-text .section-title   { color: var(--deep-night); }

.story-text p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: #3a3550;
  margin-bottom: 1.2rem;
}

.story-sig {
  font-style: italic;
  font-weight: 400;
  color: var(--alpenglow-purple);
  margin-top: 0.4rem;
  margin-bottom: 1.8rem;
}

.story-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.story-stat-pill {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--alpenglow-purple);
  background: rgba(107, 63, 160, 0.08);
  border: 1px solid rgba(107, 63, 160, 0.22);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
}

/* Photo placeholder */
.story-photo {
  width: 380px;
  height: 480px;
  background: var(--midnight);
  border-radius: var(--radius-md);
  border: 1px solid rgba(247, 244, 240, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.story-photo-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  color: rgba(247, 244, 240, 0.35);
  text-transform: uppercase;
}

.story-photo-note {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(247, 244, 240, 0.2);
  text-align: center;
  max-width: 200px;
  line-height: 1.5;
}


/* ===================================================================
   SHOP / CATALOG
=================================================================== */
.shop {
  background: var(--deep-night);
  background-image:
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(107, 63, 160, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(194, 82, 122, 0.05) 0%, transparent 60%);
  padding: 6rem 0;
}

.shop .section-sub { margin-bottom: 2.5rem; }

/* Filter buttons */
.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.filter-btn {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 244, 240, 0.55);
  background: rgba(247, 244, 240, 0.05);
  border: 1px solid rgba(247, 244, 240, 0.1);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: color var(--transition), background var(--transition),
              border-color var(--transition);
}

.filter-btn:hover {
  color: var(--summit-snow);
  border-color: rgba(247, 244, 240, 0.3);
}

.filter-btn.active {
  background: var(--alpenglow-purple);
  color: var(--white);
  border-color: var(--alpenglow-purple);
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}


/* ===================================================================
   PRODUCT CARDS (base)
=================================================================== */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--midnight);
  border: 1px solid rgba(247, 244, 240, 0.07);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow),
              border-color var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(107, 63, 160, 0.28);
}

.product-img {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  min-height: 140px;
}

.coming-soon-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(6, 4, 18, 0.7);
  border: 1px solid rgba(247, 244, 240, 0.18);
  color: rgba(247, 244, 240, 0.72);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
}

.small-batch-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(107, 63, 160, 0.4);
  border: 1px solid rgba(107, 63, 160, 0.5);
  color: rgba(247, 244, 240, 0.75);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: var(--radius-pill);
}

.product-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem;
  gap: 0.5rem;
}

.product-category {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--alpenglow-rose);
}

.product-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.2;
  color: var(--summit-snow);
}

.product-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(247, 244, 240, 0.5);
  flex: 1;
}

.product-options {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.option-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 244, 240, 0.38);
}

.option-select {
  background: rgba(247, 244, 240, 0.05);
  border: 1px solid rgba(247, 244, 240, 0.12);
  border-radius: var(--radius-sm);
  color: rgba(247, 244, 240, 0.75);
  font-family: var(--font-body);
  font-size: 0.8rem;
  padding: 0.45rem 0.75rem;
  cursor: pointer;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1 L6 7 L11 1' stroke='rgba(247,244,240,0.35)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.2rem;
}

.option-select:focus {
  outline: none;
  border-color: var(--alpenglow-purple);
}

.option-select option {
  background: var(--midnight);
  color: var(--summit-snow);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(247, 244, 240, 0.06);
}

.product-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--summit-snow);
}


/* ===================================================================
   EMAIL CAPTURE (Notify)
=================================================================== */
.notify {
  background: linear-gradient(135deg, #0C0720 0%, #160B30 50%, #0C0720 100%);
  padding: 6rem 0;
}

.notify-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.notify-text .section-title { max-width: 480px; }

.notify-perks {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.notify-perks li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(247, 244, 240, 0.65);
  display: flex;
  gap: 0.6rem;
}

/* Form */
.notify-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-group label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 244, 240, 0.55);
}

.form-group input,
.form-group select {
  background: rgba(247, 244, 240, 0.05);
  border: 1px solid rgba(247, 244, 240, 0.12);
  border-radius: var(--radius-sm);
  color: var(--summit-snow);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  transition: border-color var(--transition);
}

.form-group input::placeholder { color: rgba(247, 244, 240, 0.28); }

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--alpenglow-purple);
  background: rgba(107, 63, 160, 0.07);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1 L6 7 L11 1' stroke='rgba(247,244,240,0.35)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group select option { background: var(--midnight); }

.form-privacy {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(247, 244, 240, 0.28);
  text-align: center;
}

/* Success state */
.notify-success {
  background: rgba(74, 155, 111, 0.1);
  border: 1px solid rgba(74, 155, 111, 0.3);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  text-align: center;
}

.success-icon {
  width: 52px;
  height: 52px;
  background: rgba(74, 155, 111, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.4rem;
  color: #4A9B6F;
  font-weight: 800;
}

.notify-success h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--summit-snow);
  margin-bottom: 0.75rem;
}

.notify-success p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(247, 244, 240, 0.65);
  line-height: 1.65;
}


/* ===================================================================
   COMMUNITY + FARMERS MARKET
=================================================================== */
.community-section {
  background: var(--summit-snow);
  padding: 5rem 0;
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.community-card {
  background: var(--midnight);
  border: 1px solid rgba(247, 244, 240, 0.07);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.community-card--market {
  background: var(--dusk);
}

.community-card-tag {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--alpenglow-rose);
}

.community-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--summit-snow);
  margin-top: 0.25rem;
}

.community-card p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(247, 244, 240, 0.6);
}

.community-card strong {
  color: rgba(247, 244, 240, 0.85);
  font-weight: 600;
}

.market-date {
  display: inline-block;
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--alpine-gold);
}

.market-sub {
  color: rgba(247, 244, 240, 0.42);
  font-size: 0.82rem;
}

.community-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Coming soon ribbon */
.coming-soon-ribbon {
  position: absolute;
  top: 18px;
  right: -26px;
  background: var(--sunset-orange);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 2.2rem;
  transform: rotate(35deg);
}


/* ===================================================================
   HOW IT WORKS
=================================================================== */
.how-it-works {
  background: var(--midnight);
  padding: 6rem 0;
}

.how-it-works .section-eyebrow { color: var(--alpenglow-rose); }
.how-it-works .section-title   { color: var(--summit-snow); }
.how-it-works .section-sub     { color: rgba(247, 244, 240, 0.55); }

.steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 3.5rem;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 2rem;
}

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--alpenglow-purple), var(--alpenglow-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.step h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--summit-snow);
  margin-bottom: 0.75rem;
}

.step p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(247, 244, 240, 0.5);
}

.step-connector {
  flex-shrink: 0;
  width: 48px;
  color: rgba(247, 244, 240, 0.2);
}

.step-connector svg {
  width: 100%;
  height: auto;
}


/* ===================================================================
   FAQ
=================================================================== */
.faq {
  background: var(--summit-snow);
  padding: 6rem 0;
}

.faq .section-eyebrow { color: var(--alpenglow-purple); }
.faq .section-title   { margin-bottom: 2.5rem; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border-light);
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.3rem 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--deep-night);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--alpenglow-purple); }

.faq-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--alpenglow-purple);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.72;
  color: var(--text-muted);
  padding-bottom: 1.4rem;
}

.faq-item--open .faq-answer {
  max-height: 600px;
}

.faq-item--open .faq-toggle {
  transform: rotate(45deg);
}

.faq-item--open .faq-question {
  color: var(--alpenglow-purple);
}


/* ===================================================================
   COMPLIANCE / LEGAL
=================================================================== */
.legal {
  background: var(--dusk);
  padding: 5rem 0;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.cert-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: border-color var(--transition);
}

.cert-card:hover {
  border-color: rgba(107, 63, 160, 0.3);
}

.cert-card-icon {
  width: 40px;
  height: 40px;
  color: #4A9B6F;
}

.cert-card-icon--pending { color: var(--alpine-gold); }
.cert-card-icon svg { width: 100%; height: 100%; }

/* Active badge */
.cert-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-self: flex-start;
}

.cert-status--active {
  background: rgba(74, 155, 111, 0.18);
  border: 1px solid rgba(74, 155, 111, 0.4);
  color: #4dc483;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
}

.cert-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4dc483;
  flex-shrink: 0;
  animation: pulse-dot 2.2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.75); }
}

/* In progress badge */
.cert-status--pending {
  background: rgba(212, 168, 98, 0.12);
  border: 1px solid rgba(212, 168, 98, 0.3);
  color: var(--alpine-gold);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
}

.cert-progress-bar {
  display: block;
  width: 100%;
  height: 3px;
  background: rgba(212, 168, 98, 0.2);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.cert-progress-bar span {
  display: block;
  height: 100%;
  width: 45%;
  background: linear-gradient(90deg, var(--alpine-gold), var(--sunset-orange));
  border-radius: var(--radius-pill);
  animation: progress-slide 2.4s ease-in-out infinite alternate;
}

@keyframes progress-slide {
  from { width: 30%; }
  to   { width: 65%; }
}

.cert-card h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--summit-snow);
}

.cert-card p {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 1.62;
  color: rgba(247, 244, 240, 0.52);
}

.cert-disclaimer {
  font-style: italic;
  font-size: 0.78rem;
  color: rgba(247, 244, 240, 0.3);
}

.cert-detail {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(247, 244, 240, 0.45);
  line-height: 1.6;
}


/* ===================================================================
   FOOTER
=================================================================== */
.footer {
  background: var(--deep-night);
  border-top: 1px solid rgba(247, 244, 240, 0.06);
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(247, 244, 240, 0.06);
  margin-bottom: 2rem;
}

.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  color: rgba(247, 244, 240, 0.55);
  letter-spacing: 0.03em;
}

.footer-location {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(247, 244, 240, 0.28);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col h5 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247, 244, 240, 0.38);
  margin-bottom: 0.4rem;
}

.footer-col a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(247, 244, 240, 0.55);
  transition: color var(--transition);
  line-height: 1.5;
}

.footer-col a:hover { color: var(--summit-snow); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-legal {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(247, 244, 240, 0.25);
  line-height: 1.6;
  max-width: 700px;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: rgba(247, 244, 240, 0.3);
}


/* ===================================================================
   RESPONSIVE — 1024px
=================================================================== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding-bottom: 2rem;
  }

  .hero-visual { display: none; }

  .value-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .use-cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .story-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .story-photo {
    width: 100%;
    height: 320px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ===================================================================
   RESPONSIVE — 768px
=================================================================== */
@media (max-width: 768px) {
  html { font-size: 16px; }

  /* Nav */
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(6, 4, 18, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 2rem 2rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(247, 244, 240, 0.08);
  }

  .nav-links--open { display: flex; }

  .nav-links a {
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.78rem;
  }

  .nav-links .btn-primary {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
  }

  /* Hero */
  .hero-inner {
    padding: 3.5rem 1.5rem 2rem;
  }

  .hero-headline { font-size: clamp(2.4rem, 8vw, 3.5rem); }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }

  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.2rem;
  }

  .hero-stat-divider { display: none; }
  .hero-stat { padding: 0 0.75rem; }

  /* Value grid */
  .value-grid { grid-template-columns: 1fr; gap: 1.25rem; }

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

  /* Use cases */
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Product grid */
  .product-grid { grid-template-columns: repeat(2, 1fr); }

  /* Notify */
  .notify-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  /* Community */
  .community-grid { grid-template-columns: 1fr; }

  /* Steps */
  .steps {
    flex-direction: column;
    gap: 2rem;
  }

  .step-connector { transform: rotate(90deg); }

  /* Cert grid */
  .cert-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-nav { grid-template-columns: 1fr 1fr; }
}


/* ===================================================================
   RESPONSIVE — 480px
=================================================================== */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }

  .hero-inner { padding: 2.5rem 1.25rem 1.5rem; }

  .hero-badge-pill { font-size: 0.58rem; }

  .hero-headline { font-size: 2.2rem; }

  .hero-stats { padding: 0.9rem 1rem; }

  .value-card { padding: 1.75rem; }

  .use-cases-grid { grid-template-columns: 1fr; }

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

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

  .product-filters { gap: 0.4rem; }
  .filter-btn { font-size: 0.65rem; padding: 0.45rem 0.85rem; }

  .story-photo { height: 260px; }

  .footer-nav { grid-template-columns: 1fr; }

  .footer-top { gap: 2rem; }

  .steps { gap: 1.5rem; }

  .step-connector { width: 40px; }

  .notify-inner { gap: 2.5rem; }

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