/* ==========================================================================
   Effect Energy Inc. — "Circuit" design system
   Palette: ink #0C1622 · teal #2DD4A8 (dark) / #0FA283 (light) · off-white #ECF4F1
   SPAN Premier Installer pill: bg #B4EC91 / text #292629
   ========================================================================== */

:root {
  --ink:        #0C1622;
  --ink-2:      #12212F;
  --ink-3:      #1B2E3E;
  --teal:       #2DD4A8;
  --teal-deep:  #0FA283;
  --teal-dark:  #0B7A63;
  --off:        #ECF4F1;
  --paper:      #FFFFFF;
  --span-bg:    #B4EC91;
  --span-fg:    #292629;
  --line:       rgba(12,22,34,.12);
  --line-dark:  rgba(236,244,241,.14);
  --muted:      #5A6B78;
  --muted-dark: rgba(236,244,241,.66);
  --amber:      #F5B942;

  --radius:     14px;
  --radius-lg:  22px;
  --shadow:     0 2px 4px rgba(12,22,34,.04), 0 12px 28px rgba(12,22,34,.07);
  --shadow-lg:  0 4px 8px rgba(12,22,34,.05), 0 24px 60px rgba(12,22,34,.12);
  --wrap:       1180px;
  --ease:       cubic-bezier(.22,.61,.36,1);

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-deep); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { line-height: 1.14; margin: 0 0 .5em; letter-spacing: -.022em; font-weight: 700; }
h1 { font-size: clamp(2.35rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.42rem); }
p  { margin: 0 0 1.05em; }
ul, ol { margin: 0 0 1.15em; padding-left: 1.25em; }
li { margin-bottom: .45em; }
hr { border: 0; border-top: 1px solid var(--line); margin: 2.5rem 0; }
:focus-visible { outline: 3px solid var(--teal-deep); outline-offset: 3px; border-radius: 4px; }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.section--ink { background: var(--ink); color: var(--off); }
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--paper); }
.section--ink a { color: var(--teal); }
.section--soft { background: var(--off); }
.center { text-align: center; }
.measure { max-width: 720px; }
.measure.center { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-block;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: .85rem;
}
.section--ink .eyebrow { color: var(--teal); }
.lede { font-size: 1.12rem; color: var(--muted); }
.section--ink .lede { color: var(--muted-dark); }

.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
  text-decoration: none !important;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal-deep); color: #fff; box-shadow: 0 8px 22px rgba(15,162,131,.3); }
.btn-primary:hover { background: var(--teal-dark); box-shadow: 0 12px 30px rgba(15,162,131,.38); }
.section--ink .btn-primary { background: var(--teal); color: var(--ink); box-shadow: 0 8px 22px rgba(45,212,168,.28); }
.btn-ghost { border-color: currentColor; color: var(--ink); }
/* Any dark-background context must flip the ghost button to light, or it is
   invisible. .hero and .page-hero are dark but are NOT .section--ink. */
.section--ink .btn-ghost,
.hero .btn-ghost,
.page-hero .btn-ghost { color: var(--off); }
.btn-ghost:hover { background: rgba(12,22,34,.06); }
.section--ink .btn-ghost:hover,
.hero .btn-ghost:hover,
.page-hero .btn-ghost:hover { background: rgba(236,244,241,.1); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- SPAN pill (no logo file exists — this IS the badge) ---------- */
.span-pill {
  display: inline-flex; align-items: center; gap: .5em;
  background: var(--span-bg);
  color: var(--span-fg);
  font-weight: 750;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 999px;
  white-space: nowrap;
  text-decoration: none !important;
}
.span-pill--lg { font-size: .95rem; padding: 12px 26px; letter-spacing: .08em; }

/* ---------- header ---------- */
.topbar {
  background: var(--ink);
  color: var(--off);
  font-size: .86rem;
  padding: 9px 0;
  text-align: center;
}
.topbar .wrap { display: flex; gap: 14px; align-items: center; justify-content: center; flex-wrap: wrap; }
.topbar a { color: var(--teal); font-weight: 600; }

/* The header is DARK on purpose. The logo's "energy" wordmark is light sage and
   is invisible on white — verified on screen. Darkening the bar fixes the
   contrast without recolouring the brand asset. */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(12,22,34,.94);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-dark);
}
.site-header .wrap { display: flex; align-items: center; gap: 22px; min-height: 74px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none !important; flex-shrink: 0; }
.brand img { height: 52px; width: auto; }
.brand-mark {
  font-weight: 800; font-size: 1.16rem; letter-spacing: -.02em; color: var(--ink); line-height: 1.05;
}
.brand-mark span { display: block; font-size: .62rem; letter-spacing: .18em; font-weight: 600; color: var(--teal-deep); text-transform: uppercase; }
/* CSLB strapline that sits beside the logo — divider rule, no company name
   (the logo already says it). */
.brand-sub {
  border-left: 1px solid var(--line-dark); padding-left: 12px;
}
.brand-sub span { font-size: .6rem; letter-spacing: .14em; white-space: nowrap; color: var(--teal); }
@media (max-width: 420px) { .brand-sub { display: none; } .brand img { height: 46px; } }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  padding: 9px 13px; border-radius: 9px; color: var(--off); font-weight: 550; font-size: .95rem;
  text-decoration: none !important; transition: background .15s;
}
.nav a:hover { background: rgba(236,244,241,.1); }
.nav a.is-active { color: var(--teal); font-weight: 700; }
.nav .btn { margin-left: 8px; padding: 11px 22px; font-size: .93rem; }
.site-header .btn-primary { background: var(--teal); color: var(--ink); box-shadow: none; }
.site-header .btn-primary:hover { background: #4EE0BB; }

.nav-toggle {
  display: none; margin-left: auto; background: none; border: 0; cursor: pointer;
  padding: 10px; color: var(--off);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(1100px 520px at 12% -10%, rgba(45,212,168,.20), transparent 62%),
    radial-gradient(900px 460px at 92% 8%, rgba(45,212,168,.10), transparent 60%),
    var(--ink);
  color: var(--off);
  padding: 92px 0 78px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(45,212,168,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45,212,168,.05) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 72%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), transparent 72%);
}
.hero .wrap { position: relative; z-index: 1; }
.hero h1 { color: #fff; margin-bottom: .38em; }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero-sub { font-size: 1.16rem; color: var(--muted-dark); max-width: 640px; margin-bottom: 1.6rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 1.9rem; }
.hero-meta {
  display: flex; gap: 10px 26px; flex-wrap: wrap;
  font-size: .84rem; letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted-dark); font-weight: 600;
}

.page-hero {
  background:
    radial-gradient(900px 420px at 20% -20%, rgba(45,212,168,.17), transparent 60%),
    var(--ink);
  color: var(--off);
  padding: 66px 0 56px;
}
.page-hero h1 { color: #fff; }
.page-hero .lede { max-width: 700px; }
.crumbs { font-size: .84rem; color: var(--muted-dark); margin-bottom: 1rem; }
.crumbs a { color: var(--teal); }

/* ---------- stat strip ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark); }
.stat { background: var(--ink-2); padding: 28px 22px; text-align: center; }
.stat b { display: block; font-size: 2.1rem; font-weight: 800; color: var(--teal); letter-spacing: -.03em; line-height: 1.1; }
.stat span { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-dark); font-weight: 600; }

/* ---------- cards ---------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  box-shadow: var(--shadow);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
  display: flex; flex-direction: column;
}
a.card { color: inherit; text-decoration: none !important; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card h3 { margin-bottom: .45em; }
.card p { color: var(--muted); margin-bottom: 1em; }
.card ul { color: var(--muted); font-size: .96rem; padding-left: 1.1em; }
.card .card-cta { margin-top: auto; font-weight: 700; color: var(--teal-deep); }
/* Icons are inline SVG, not emoji — emoji fall back to tofu boxes on machines
   without a colour emoji font, which includes plenty of Windows setups. */
.card-icon {
  width: 50px; height: 50px; border-radius: 13px;
  display: grid; place-items: center;
  font-size: 1.35rem; font-weight: 800; color: var(--teal-deep);
  background: rgba(15,162,131,.1); margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; stroke: var(--teal-deep); fill: none;
  stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.card--dark .card-icon { background: rgba(45,212,168,.14); color: var(--teal); }
.card--dark .card-icon svg { stroke: var(--teal); }
.card--flat { box-shadow: none; }
.card--flat:hover { transform: none; box-shadow: var(--shadow); }
.card--dark { background: var(--ink-2); border-color: var(--line-dark); color: var(--off); }
.card--dark p, .card--dark ul { color: var(--muted-dark); }

/* ---------- partners ---------- */
.partners { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.partner {
  border: 1px solid var(--line); border-radius: 999px;
  padding: 11px 26px; font-weight: 700; font-size: .98rem; letter-spacing: .01em;
  background: var(--paper);
}
.section--ink .partner { border-color: var(--line-dark); background: var(--ink-2); color: var(--off); }

/* ---------- Yelp carousel ---------- */
.yelp-shell { max-width: 800px; margin: 0 auto; }
.yelp-stage { position: relative; min-height: 260px; }
.yelp-card {
  position: absolute; inset: 0;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px 42px; box-shadow: var(--shadow);
  opacity: 0; transform: rotateX(-8deg) translateY(14px); transform-origin: top center;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  pointer-events: none;
  display: flex; flex-direction: column; justify-content: center;
}
.yelp-card.is-active { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.yelp-stars { color: #FF1A1A; font-size: 1.15rem; letter-spacing: .1em; margin-bottom: .7rem; }
.yelp-quote { font-size: 1.13rem; line-height: 1.6; margin-bottom: 1.1rem; }
.yelp-who { font-weight: 700; }
.yelp-who span { display: block; font-weight: 500; color: var(--muted); font-size: .9rem; }
.yelp-dots { display: flex; gap: 9px; justify-content: center; margin-top: 22px; }
.yelp-dots button {
  width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(12,22,34,.2); cursor: pointer; transition: all .2s;
}
.yelp-dots button.is-active { background: var(--teal-deep); width: 26px; border-radius: 999px; }
.yelp-link { display: block; text-align: center; margin-top: 18px; font-weight: 650; }
.placeholder-note {
  display: inline-block; background: #FFF4D6; border: 1px dashed #D9A520; color: #6B4E05;
  font-size: .78rem; font-weight: 650; padding: 5px 13px; border-radius: 999px; margin-bottom: 14px;
}

/* ---------- photo grid ---------- */
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.photo-grid--3 { grid-template-columns: repeat(3, 1fr); }
.photo {
  padding: 0; border: 0; background: var(--ink-3); cursor: zoom-in;
  border-radius: var(--radius); overflow: hidden; position: relative;
  aspect-ratio: 7 / 5; display: block;
}
.photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--ease), opacity .3s;
}
.photo:hover img { transform: scale(1.06); }
.photo::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(12,22,34,.08);
  border-radius: var(--radius);
}

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6,12,18,.94);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 24px;
  animation: lbIn .18s var(--ease);
}
@keyframes lbIn { from { opacity: 0 } to { opacity: 1 } }
.lb-fig { margin: 0; max-width: min(1200px, 92vw); text-align: center; }
.lb-fig img {
  max-width: 100%; max-height: 78vh; width: auto; height: auto;
  border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.lb-fig figcaption { color: rgba(236,244,241,.72); font-size: .9rem; margin-top: 14px; }
.lb-close, .lb-nav {
  background: rgba(236,244,241,.12); color: #fff; border: 0; cursor: pointer;
  border-radius: 999px; line-height: 1; transition: background .15s;
}
.lb-close:hover, .lb-nav:hover { background: rgba(236,244,241,.28); }
.lb-close { position: absolute; top: 18px; right: 20px; width: 44px; height: 44px; font-size: 1.8rem; }
.lb-nav { width: 52px; height: 52px; font-size: 2.2rem; flex-shrink: 0; }

/* ---------- photo placeholder (a section with no photos yet) ---------- */
.photo-empty {
  border: 2px dashed rgba(12,22,34,.18); border-radius: var(--radius-lg);
  padding: 40px 30px; text-align: center; color: var(--muted); background: var(--off);
}
.section--ink .photo-empty { border-color: var(--line-dark); background: var(--ink-2); color: var(--muted-dark); }
.photo-empty strong { display: block; color: var(--ink); margin-bottom: .3em; }
.section--ink .photo-empty strong { color: var(--paper); }

/* ---------- areas ---------- */
.areas { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.area {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 16px; text-align: center;
  background: var(--paper);
}
.area b { display: block; font-size: 1.02rem; }
.area span { font-size: .84rem; color: var(--muted); }

/* ---------- forms ---------- */
.form-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 36px 34px; box-shadow: var(--shadow-lg);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 650; font-size: .92rem; margin-bottom: 7px; }
.field .req { color: #C0392B; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font: inherit; font-size: 1rem;
  border: 1px solid rgba(12,22,34,.22); border-radius: 11px; background: #fff; color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal-deep); box-shadow: 0 0 0 4px rgba(15,162,131,.14); outline: none;
}
.field textarea { min-height: 118px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

/* A2P consent block — carriers read this. Keep visible, keep unchecked by default. */
.consent {
  border: 1px solid var(--line); border-left: 4px solid var(--teal-deep);
  background: var(--off); border-radius: 12px;
  padding: 18px 20px; margin: 24px 0;
}
.consent label { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; font-weight: 500; }
.consent input[type="checkbox"] {
  width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; accent-color: var(--teal-deep); cursor: pointer;
}
.consent .consent-text { font-size: .93rem; line-height: 1.55; }
.consent .consent-fine { font-size: .84rem; color: var(--muted); margin: 10px 0 0; line-height: 1.55; }
.form-foot { font-size: .82rem; color: var(--muted); margin-top: 14px; line-height: 1.55; }

/* ---------- legal pages ---------- */
.legal { max-width: 800px; }
.legal h2 { font-size: 1.4rem; margin-top: 2.2rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
.legal h2:first-of-type { border-top: 0; padding-top: 0; }
.legal h3 { font-size: 1.08rem; margin-top: 1.6rem; }
.legal .updated { color: var(--muted); font-size: .92rem; }
.legal-toc {
  background: var(--off); border-radius: var(--radius); padding: 22px 26px; margin: 0 0 2.5rem;
}
.legal-toc ul { columns: 2; column-gap: 30px; margin: 0; padding-left: 1.1em; font-size: .94rem; }
.callout {
  background: rgba(15,162,131,.07); border: 1px solid rgba(15,162,131,.28);
  border-radius: var(--radius); padding: 20px 24px; margin: 1.6rem 0;
}
.callout p:last-child { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--teal-deep), #0A6E5B);
  color: #fff; text-align: center; padding: 74px 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 620px; margin: 0 auto 1.8rem; font-size: 1.08rem; }
.cta-band .btn-primary { background: #fff; color: var(--teal-dark); box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.cta-band .btn-ghost { color: #fff; }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.14); }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--muted-dark); padding: 62px 0 26px; font-size: .94rem; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.3fr; gap: 40px; }
.site-footer h4 {
  color: var(--paper); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 1.1rem; font-weight: 700;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .6em; }
.site-footer a { color: var(--muted-dark); }
.site-footer a:hover { color: var(--teal); }
.footer-brand img { height: 58px; width: auto; margin-bottom: 6px; }
.footer-brand .brand-mark { color: var(--paper); margin-bottom: 14px; }
.footer-brand .brand-sub { border-left: 0; padding-left: 0; margin-bottom: 16px; }
.socials { display: flex; gap: 10px; margin-top: 16px; }
.socials a {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(236,244,241,.08); color: var(--off); font-size: .78rem; font-weight: 700;
  text-decoration: none !important;
}
.socials a:hover { background: var(--teal); color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--line-dark); margin-top: 44px; padding-top: 22px;
  font-size: .84rem; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-sms { font-size: .8rem; color: rgba(236,244,241,.5); margin-top: 12px; }

/* ---------- sticky mobile call bar ---------- */
.callbar { display: none; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .photo-grid, .photo-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .areas  { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 58px 0; }
  .hero { padding: 62px 0 54px; }
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ink-2); border-bottom: 1px solid var(--line-dark);
    flex-direction: column; align-items: stretch; padding: 12px 18px 20px;
    box-shadow: var(--shadow-lg);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 13px 8px; border-radius: 8px; }
  .nav .btn { margin: 8px 0 0; justify-content: center; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .photo-grid, .photo-grid--3 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .areas { grid-template-columns: repeat(2, 1fr); }
  .lightbox { padding: 12px; gap: 2px; }
  .lb-nav { width: 40px; height: 40px; font-size: 1.7rem; }
  .lb-fig img { max-height: 70vh; }
  .footer-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .legal-toc ul { columns: 1; }
  .yelp-card { padding: 28px 24px; }
  .form-card { padding: 26px 22px; }
  body { padding-bottom: 62px; }
  .callbar {
    display: block; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
    background: var(--teal-deep); color: #fff; text-align: center;
    padding: 15px; font-weight: 700; text-decoration: none !important;
    box-shadow: 0 -4px 20px rgba(12,22,34,.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
