/*
Theme Name: DAC Magic Store
Theme URI: https://store.dacmagic.com
Author: Ezzey Digital Marketing
Author URI: https://ezzey.com
Description: Dealer resource hub for DAC Magic. Built for store.dacmagic.com with an embedded GoHighLevel storefront on /shop. Energy Sentry-inspired engineered aesthetic.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dac-magic-store
*/

/* ============================================
   Design tokens
   ============================================ */
:root {
  --navy: #0A1929;
  --navy-mid: #102A43;
  --navy-light: #1E3A5F;
  --electric: #58B33E;
  --electric-bright: #6BC650;
  --amber: #F59E0B;
  --white: #FFFFFF;
  --bg: #FAFBFC;
  --bg-alt: #F1F5F9;
  --border: #E2E8F0;
  --border-strong: #CBD5E1;
  --slate: #475569;
  --slate-dark: #1E293B;
  --slate-mid: #64748B;
  --slate-light: #94A3B8;

  --font-display: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-body: 'Open Sans', 'Helvetica Neue', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --max-w: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 2px rgba(10, 25, 41, 0.06), 0 1px 3px rgba(10, 25, 41, 0.04);
  --shadow-md: 0 4px 12px rgba(10, 25, 41, 0.08), 0 2px 4px rgba(10, 25, 41, 0.04);
  --shadow-lg: 0 24px 48px -12px rgba(10, 25, 41, 0.18);
  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate-dark);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--electric);
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);

}

p {
  max-width: 65ch;
}

/* ============================================
   Layout
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.section-tight {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

/* ============================================
   Header / Navigation
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.site-brand:hover {
  color: var(--navy);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--electric);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0;
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(88, 179, 62, 0.4), transparent 60%);
  pointer-events: none;
}

.brand-text-store {
  color: var(--slate-mid);
  font-weight: 500;
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-primary ul,
.nav-primary .menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-primary a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--slate-dark);
  position: relative;
}

.nav-primary a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--electric);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.nav-primary a:hover::after,
.nav-primary .current-menu-item > a::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 6px;
  padding: 0.5rem 0.7rem;
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  margin: 4px 0;
}

@media (max-width: 880px) {
  .nav-toggle {
    display: block;
  }
  .nav-primary {
    position: fixed;
    inset: 76px 0 auto 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem var(--gutter);
    transform: translateY(-110%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-md);
  }
  .nav-primary.is-open {
    transform: translateY(0);
  }
  .nav-primary ul,
  .nav-primary .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    width: 100%;
  }
  .nav-primary .btn {
    width: 100%;
    text-align: center;
  }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--navy-mid);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-electric {
  background: var(--electric);
  color: var(--white);
  border-color: var(--electric);
}

.btn-electric:hover {
  background: var(--electric-bright);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -4px rgba(88, 179, 62, 0.55);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: transparent;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.btn-ghost:hover {
  color: var(--electric);
}

.btn-arrow::after {
  content: "→";
  transition: transform var(--transition);
}

.btn-arrow:hover::after {
  transform: translateX(3px);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(88, 179, 62, 0.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 15% 80%, rgba(88, 179, 62, 0.05), transparent 60%),
    var(--bg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(10, 25, 41, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 25, 41, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 40%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: 1.3fr 1fr;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--electric);
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(88, 179, 62, 0.35);
  border-radius: 999px;
  background: rgba(88, 179, 62, 0.05);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--electric);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--electric);
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin-bottom: 1.5rem;

}

.hero h1 .accent {
  color: var(--electric);
  font-style: italic;
  font-weight: 500;

}

.hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--slate);
  margin-bottom: 2rem;
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
}

.hero-meta-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.hero-meta-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-mid);
  margin-top: 0.15rem;
}

/* Hero visual panel */
.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(88, 179, 62, 0.4), transparent 50%),
    radial-gradient(circle at 20% 90%, rgba(88, 179, 62, 0.2), transparent 50%);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-visual-content {
  position: absolute;
  inset: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  z-index: 2;
}

.hero-visual-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--electric);
  align-self: flex-start;
}

.hero-visual-tag::before {
  content: "●";
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

.hero-visual-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero-visual-spec {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-visual-spec-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

.hero-visual-spec-key {
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-visual-spec-val {
  color: var(--white);
  font-weight: 500;
}

/* ============================================
   Section header
   ============================================ */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 3rem;
  max-width: 42rem;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--electric);
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  letter-spacing: -0.025em;

}

.section-head p {
  font-size: 1.1rem;
  color: var(--slate);
}

/* ============================================
   Why grid (3-up feature)
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.why-card {
  padding: 2.5rem 2rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background var(--transition);
}

.why-card:hover {
  background: var(--bg-alt);
}

.why-card-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--electric);
}

.why-card h3 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.why-card p {
  color: var(--slate);
  font-size: 0.97rem;
}

/* ============================================
   Product grid
   ============================================ */
.products-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.products-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(88, 179, 62, 0.14), transparent 70%);
  pointer-events: none;
}

.products-section .section-head h2 {
  color: var(--white);

}

.products-section .section-head p {
  color: rgba(255, 255, 255, 0.7);
}

.products-section .section-eyebrow {
  color: var(--electric);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.product-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition);
}

.product-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(88, 179, 62, 0.45);
  transform: translateY(-4px);
}

.product-card-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--electric);
}

.product-card h3 {
  color: var(--white);
  font-size: 1.25rem;
  letter-spacing: -0.015em;
}

.product-card-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
  flex-grow: 1;
}

.product-card-price {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card-price .unit {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.product-card-cta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--electric);
  margin-top: 0.5rem;
}

.product-card-cta::after {
  content: " →";
  transition: transform var(--transition);
  display: inline-block;
}

.product-card:hover .product-card-cta::after {
  transform: translateX(3px);
}

/* ============================================
   CTA band
   ============================================ */
.cta-band {
  padding: clamp(3rem, 7vw, 5rem) 0;
  background: var(--bg-alt);
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  padding: clamp(2.5rem, 5vw, 4rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(88, 179, 62, 0.06), transparent 60%);
  pointer-events: none;
}

.cta-inner > * {
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  letter-spacing: -0.025em;
  max-width: 32rem;
}

.cta-inner p {
  color: var(--slate);
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ============================================
   Page intro (sub-pages)
   ============================================ */
.page-intro {
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(ellipse 70% 50% at 70% 30%, rgba(88, 179, 62, 0.06), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-intro-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--electric);
  margin-bottom: 1rem;
  display: block;
}

.page-intro h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;

}

.page-intro p {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 42rem;
}

/* ============================================
   Shop iframe wrapper
   ============================================ */
.shop-wrap {
  padding: 0;
  background: var(--white);
}

.shop-iframe-container {
  width: 100%;
  background: var(--white);
}

.shop-iframe {
  width: 100%;
  min-height: 2200px;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .shop-iframe {
    min-height: 2400px;
  }
}

.shop-fallback {
  padding: 3rem var(--gutter);
  text-align: center;
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

/* ============================================
   Content (About, FAQ, etc.)
   ============================================ */
.content {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.content-narrow {
  max-width: 720px;
  margin: 0 auto;
}

.content h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  margin: 3rem 0 1rem;
  letter-spacing: -0.02em;
}

.content h2:first-child {
  margin-top: 0;
}

.content h3 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
  letter-spacing: -0.015em;
}

.content p {
  font-size: 1.05rem;
  color: var(--slate);
  margin-bottom: 1.25rem;
  max-width: none;
}

.content ul,
.content ol {
  margin: 0 0 1.5rem 1.5rem;
  color: var(--slate);
}

.content li {
  margin-bottom: 0.5rem;
}

.content a {
  color: var(--electric);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(88, 179, 62, 0.45);
}

.content a:hover {
  text-decoration-color: var(--electric);
}

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

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.faq-item summary {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  letter-spacing: -0.015em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--electric);
  font-weight: 400;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item-body {
  margin-top: 1rem;
  color: var(--slate);
  font-size: 1rem;
}

/* ============================================
   Contact form
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 880px) {
  .contact-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .form-row.two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-mid);
}

.form-field input,
.form-field textarea,
.form-field select {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--white);
  font-size: 1rem;
  color: var(--slate-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--electric);
  box-shadow: 0 0 0 3px rgba(88, 179, 62, 0.15);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--font-body);
}

.contact-info {
  background: var(--bg-alt);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-self: start;
}

.contact-info h3 {
  font-size: 1.25rem;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-info-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-mid);
}

.contact-info-value {
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
}

.contact-info-value a {
  color: var(--navy);
}

.contact-info-value a:hover {
  color: var(--electric);
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--electric), transparent);
  opacity: 0.4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand-block .site-brand {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand-block .brand-text-store {
  color: rgba(255, 255, 255, 0.5);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  max-width: 22rem;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--electric);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   Utility
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-mono {
  font-family: var(--font-mono);
}

.text-electric {
  color: var(--electric);
}
