/* ============================================================
   POWERED FLOWERS – Main Site Stylesheet
   Design: Dark, professional, modern tech-meets-nature
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --bg:          #0b0f16;
  --bg-2:        #141b26;
  --bg-3:        #1c2636;
  --accent:      #6ac82b;
  --accent-dim:  #4e9420;
  --accent-glow: rgba(106, 200, 43, 0.18);
  --text:        #e8edf5;
  --text-muted:  #7a8fa8;
  --border:      rgba(255,255,255,0.08);
  --border-accent: rgba(106,200,43,0.3);
  --white:       #ffffff;
  --nav-h:       72px;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow:      0 8px 32px rgba(0,0,0,0.45);
  --shadow-lg:   0 20px 60px rgba(0,0,0,0.6);
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* ── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { color: var(--text-muted); line-height: 1.8; max-width: 68ch; }
strong { color: var(--text); font-weight: 600; }

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: block;
}
.lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text);
  max-width: 64ch;
}

/* ── Layout Utilities ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide { max-width: 1400px; }
.section {
  padding: 96px 0;
}
.section--sm { padding: 64px 0; }
.section--lg { padding: 128px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.gap-sm { gap: 12px; }
.gap { gap: 24px; }
.gap-lg { gap: 40px; }
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }
.mt-sm { margin-top: 12px; }
.mt { margin-top: 24px; }
.mt-lg { margin-top: 48px; }
.mb-sm { margin-bottom: 12px; }
.mb { margin-bottom: 24px; }
.mb-lg { margin-bottom: 48px; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #0a1a00;
}
.btn-primary:hover {
  background: #7fe035;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(106,200,43,0.35);
}
.btn-outline {
  border: 1.5px solid var(--border-accent);
  color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
}
.btn svg, .btn .icon { width: 16px; height: 16px; flex-shrink: 0; }
.btn-download {
  background: var(--bg-3);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 10px 20px;
}
.btn-download:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Navigation ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(11,15,22,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__logo img {
  height: 36px;
  width: auto;
  filter: invert(1) brightness(2);
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__item {
  position: relative;
}
.nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  cursor: pointer;
}
.nav__link:hover, .nav__link.active {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}
.nav__link svg { width: 12px; height: 12px; transition: transform 0.2s; }
.nav__item.open .nav__link svg { transform: rotate(180deg); }

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  /* top padding creates the visual gap without breaking hover */
  padding: 16px 8px 8px;
  margin-top: 0;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: var(--shadow);
}
.nav__item.open .nav__dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
/* Invisible bridge so mouse can travel from link into dropdown without losing hover */
.nav__item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -8px;
  right: -8px;
  height: 16px;
  background: transparent;
}
.nav__dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-radius: 6px;
  transition: var(--transition);
}
.nav__dropdown a:hover {
  color: var(--text);
  background: rgba(255,255,255,0.06);
}
.nav__dropdown-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 8px 14px 4px;
}
.nav__dropdown hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 4px 0;
}
.nav__cta {
  margin-left: 12px;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--bg);
  padding: 24px;
  overflow-y: auto;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.nav__mobile a:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.nav__mobile-section { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); padding: 16px 16px 6px; }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11,15,22,0.92) 0%,
    rgba(11,15,22,0.75) 50%,
    rgba(11,15,22,0.25) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  padding-bottom: 80px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--accent); }
.hero .lead { color: rgba(232,237,245,0.85); margin-bottom: 40px; font-size: 1.2rem; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Page hero (sub-pages) */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 80px) 0 80px;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,15,22,0.8) 0%, rgba(11,15,22,0.95) 100%);
}
.page-hero__content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero .lead { color: rgba(232,237,245,0.85); }

/* ── Section Headers ───────────────────────────────────────── */
.section-header { margin-bottom: 56px; }
.section-header.text-center p { margin: 12px auto 0; }
.section-header h2 { margin-top: 8px; }
.section-header p { margin-top: 12px; }

/* ── Cards ─────────────────────────────────────────────────── */
.card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(106,200,43,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card__img { transform: scale(1.04); }
.card__img-wrap { overflow: hidden; }
.card__body { padding: 28px; }
.card__body h3 { margin-bottom: 10px; }
.card__body p { font-size: 0.9rem; }
.card__footer {
  padding: 0 28px 24px;
  display: flex;
  gap: 12px;
}

/* Service card */
.service-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  border-color: rgba(106,200,43,0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.service-card__icon {
  width: 52px; height: 52px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.service-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { font-size: 0.9rem; margin-bottom: 20px; }
.service-card a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card a:hover { gap: 10px; }

/* Product card */
.product-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: rgba(106,200,43,0.25);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.product-card__img-wrap {
  background: var(--bg-3);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.product-card__img {
  max-height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__img { transform: scale(1.05) translateY(-4px); }
.product-card__body { padding: 24px 28px; flex: 1; }
.product-card__sku {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.product-card__body h3 { margin-bottom: 10px; font-size: 1.15rem; }
.product-card__body p { font-size: 0.875rem; }
.product-card__footer {
  padding: 0 28px 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Stat strip */
.stat-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.stat-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  text-align: center;
  padding: 0 32px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label { font-size: 0.875rem; color: var(--text-muted); }

/* Feature split */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-split--reverse .feature-split__img { order: 2; }
.feature-split--reverse .feature-split__content { order: 1; }
.feature-split__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feature-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 400px;
}
.feature-split__content h2 { margin-bottom: 16px; }
.feature-split__content p { margin-bottom: 24px; }
.feature-list {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.feature-list li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1.5px solid var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%236ac82b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 60%;
  background-position: center;
  background-repeat: no-repeat;
}

/* Spec table */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.spec-table tr {
  border-bottom: 1px solid var(--border);
}
.spec-table tr:last-child { border-bottom: none; }
.spec-table td {
  padding: 12px 16px;
  vertical-align: top;
}
.spec-table td:first-child {
  color: var(--text-muted);
  font-weight: 500;
  width: 40%;
  white-space: nowrap;
}
.spec-table td:last-child { color: var(--text); }
.spec-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb__sep { color: var(--border); }
.breadcrumb span { color: var(--text); }

/* Tags */
.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.tag--accent {
  background: var(--accent-glow);
  border-color: var(--border-accent);
  color: var(--accent);
}

/* CTA Band */
.cta-band {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: var(--accent-glow);
  filter: blur(80px);
}
.cta-band__text h2 { color: var(--white); margin-bottom: 12px; }
.cta-band__text p { color: var(--text-muted); font-size: 1rem; }
.cta-band__actions { display: flex; gap: 12px; flex-shrink: 0; }

/* Quote block */
.quote-block {
  border-left: 3px solid var(--accent);
  padding: 20px 28px;
  background: var(--bg-2);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 32px 0;
}
.quote-block p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  max-width: none;
}
.quote-block cite {
  display: block;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  font-style: normal;
}

/* Accordion */
.accordion { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.accordion__item { border-bottom: 1px solid var(--border); }
.accordion__item:last-child { border-bottom: none; }
.accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s;
}
.accordion__trigger:hover { background: rgba(255,255,255,0.03); }
.accordion__trigger svg { width: 18px; height: 18px; transition: transform 0.3s; flex-shrink: 0; }
.accordion__item.open .accordion__trigger svg { transform: rotate(180deg); }
.accordion__body {
  display: none;
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}
.accordion__item.open .accordion__body { display: block; }

/* Gallery grid */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery--2col { grid-template-columns: repeat(2, 1fr); }
.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item--tall { grid-row: span 2; aspect-ratio: auto; }
.gallery__item--wide { grid-column: span 2; aspect-ratio: 16/7; }

/* Icon list */
.icon-list { display: flex; flex-direction: column; gap: 16px; }
.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}
.icon-list__icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

/* Pill nav (product sub-nav) */
.pill-nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
}
.pill-nav a {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: var(--transition);
}
.pill-nav a:hover, .pill-nav a.active {
  background: var(--accent-glow);
  border-color: var(--border-accent);
  color: var(--accent);
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer__brand img {
  height: 32px;
  width: auto;
  filter: invert(1) brightness(2);
  margin-bottom: 16px;
}
.footer__brand p {
  font-size: 0.875rem;
  max-width: 32ch;
  margin-bottom: 20px;
}
.footer__brand .tagline {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.08em;
}
.footer__col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { color: var(--text-muted); transition: color 0.2s; }
.footer__bottom-links a:hover { color: var(--text); }
.footer__fdl-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  transition: var(--transition);
}
.footer__fdl-link:hover { border-color: var(--border-accent); color: var(--accent); }
.footer__fdl-link img { height: 18px; filter: invert(1) brightness(0.9); }

/* ── Animations / Reveal ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Dividers ──────────────────────────────────────────────── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* Gradient text */
.grad-text {
  background: linear-gradient(135deg, var(--accent) 0%, #b8f55e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid var(--border); padding: 24px 0; }
  .stat:nth-child(2n) { border-right: none; }
  .stat:last-child, .stat:nth-last-child(-n+2) { border-bottom: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-band { flex-direction: column; text-align: center; padding: 48px 32px; }
  .cta-band__actions { justify-content: center; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  h1 { font-size: clamp(2rem, 8vw, 3.2rem); }
  h2 { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  .section { padding: 64px 0; }
  .section--lg { padding: 80px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .feature-split { grid-template-columns: 1fr; gap: 40px; }
  .feature-split--reverse .feature-split__img,
  .feature-split--reverse .feature-split__content { order: unset; }
  .nav__menu, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta-band { padding: 40px 24px; }
  .stat-strip__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery__item--tall { grid-row: auto; }
  .hero__actions { flex-direction: column; }
  .pill-nav a { font-size: 0.8rem; padding: 7px 16px; }
}
