/* ============================================================
   Spray Liquid Green — Single Landing Page
   Brand: lime #ACD155 / purple #8138B7 / dark #262626
   ============================================================ */

:root {
  --lime: #ACD155;
  --lime-bright: #BADA55;
  --lime-light: #D3EA9C;
  --purple: #8138B7;
  --lavender: #A37CBF;
  --dark: #0a0a0a;
  --dark-2: #161616;
  --dark-3: #1f1f1f;
  --white: #ffffff;
  --offwhite: #CFC8C0;
  --gradient: linear-gradient(135deg, var(--lime) 0%, var(--purple) 100%);
  --gradient-hover: linear-gradient(135deg, var(--purple) 0%, var(--lime) 100%);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-video: 0 24px 60px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--dark);
  color: var(--white);
  font-family: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: var(--lime); text-decoration: none; }
a:hover { text-decoration: underline; }

::selection { background: var(--lime); color: var(--dark); }

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -50px;
  left: 12px;
  background: var(--lime);
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 6px;
  z-index: 9999;
  font-weight: 700;
}
.skip-link:focus { top: 10px; }

/* ---------- Brand Bar (compact, top) ---------- */
.brand-bar {
  width: 100%;
  background: #000;
  border-bottom: 1px solid rgba(172, 209, 85, 0.18);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand-bar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}
.brand-bar__logo img { width: 44px; height: 38px; }
.brand-bar__logo-text {
  font-family: 'Rubik Distressed', 'Oswald', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  line-height: 1;
}
.brand-bar__logo-text small {
  display: block;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--offwhite);
  margin-top: 4px;
}

.brand-bar__contact {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.brand-bar__phone {
  color: var(--lime);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.brand-bar__phone:hover { color: var(--lime-bright); text-decoration: none; }
.brand-bar__phone svg { width: 14px; height: 14px; }

/* ---------- Hero ---------- */
.hero {
  width: 100%;
  padding: 56px 24px 24px;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(129, 56, 183, 0.18) 0%, transparent 60%),
              radial-gradient(ellipse at bottom, rgba(172, 209, 85, 0.10) 0%, transparent 60%),
              var(--dark);
}
.hero__eyebrow {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 auto 14px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--lime);
}
.hero__title {
  font-family: 'Rubik Distressed', 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.05;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 auto 18px;
  max-width: 1000px;
}
.hero__title em {
  font-style: normal;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--offwhite);
  max-width: 720px;
  margin: 0 auto 8px;
  line-height: 1.65;
}

/* ---------- Video Section ---------- */
.video-section {
  width: 100%;
  padding: 36px 24px 24px;
}
.video-wrap {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
}
/* ---- Branded tip banner (above the video) ----
   Lime→purple gradient, dark text, speaker icon, and a flashing
   effect (pulsing glow + brightening flash + shimmer sweep). */
.opp-tip-flash {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto 18px;
  max-width: 980px;
  padding: 14px 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--lime) 0%, var(--purple) 100%);
  color: #0a0a0a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  text-align: left;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(10, 10, 10, 0.12);
  /* flashing effect: pulsing glow + scale */
  animation: opp-tip-flash 2.4s ease-in-out infinite;
}
.opp-tip-flash::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: opp-tip-shimmer 3.6s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
.opp-tip-flash::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  pointer-events: none;
  z-index: -1;
  animation: opp-tip-brighten 2.4s ease-in-out infinite;
  mix-blend-mode: overlay;
}
.opp-tip-flash__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(10, 10, 10, 0.22);
  border-radius: 50%;
  color: #0a0a0a;
}
.opp-tip-flash__icon svg { width: 18px; height: 18px; }
.opp-tip-flash__text { flex: 1; }
.opp-tip-flash__text strong {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-right: 4px;
}
@keyframes opp-tip-flash {
  0%, 100% {
    box-shadow: 0 4px 18px rgba(172, 209, 85, 0.45),
                0 0 0 0 rgba(172, 209, 85, 0.55);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 6px 28px rgba(129, 56, 183, 0.65),
                0 0 0 12px rgba(172, 209, 85, 0);
    transform: scale(1.015);
  }
}
@keyframes opp-tip-shimmer {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}
@keyframes opp-tip-brighten {
  0%, 100% { background: rgba(255, 255, 255, 0); }
  45%      { background: rgba(255, 255, 255, 0.18); }
  55%      { background: rgba(255, 255, 255, 0.32); }
}

.video-frame {
  position: relative;
  width: 100%;
  background: #000;
  border: 1px solid rgba(172, 209, 85, 0.25);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-video);
}
.video-frame video {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
}

/* ---------- Cards Section ---------- */
.cards-section {
  width: 100%;
  padding: 56px 24px 80px;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}
.cards-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.cards-section__header {
  text-align: center;
  margin-bottom: 40px;
}
.cards-section__eyebrow {
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 12px;
}
.cards-section__title {
  font-family: 'Rubik Distressed', 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}
.cards-section__lede {
  color: var(--offwhite);
  max-width: 640px;
  margin: 0 auto;
  font-size: 16px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 980px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cards-grid { grid-template-columns: 1fr; }
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(172, 209, 85, 0.20);
  border-radius: 8px;
  padding: 30px 24px 26px;
  text-decoration: none;
  color: var(--white);
  height: 100%;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
  overflow: hidden;
  isolation: isolate;
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 1;
}
.card:hover, .card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(129, 56, 183, 0.55);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  outline: none;
}
.card:hover::before, .card:focus-visible::before { transform: scaleX(1); }

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(172, 209, 85, 0.12);
  border: 1px solid rgba(172, 209, 85, 0.30);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lime);
  margin-bottom: 20px;
}
.card__icon svg { width: 28px; height: 28px; }

.card__tag {
  display: inline-block;
  font-family: 'Raleway', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(172, 209, 85, 0.10);
  border: 1px solid rgba(172, 209, 85, 0.30);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 14px;
  align-self: flex-start;
}
.card--purple .card__tag {
  color: var(--lavender);
  background: rgba(129, 56, 183, 0.16);
  border-color: rgba(129, 56, 183, 0.40);
}
.card--purple .card__icon {
  background: rgba(129, 56, 183, 0.14);
  border-color: rgba(129, 56, 183, 0.40);
  color: var(--lavender);
}

.card__title {
  font-family: 'Rubik Distressed', 'Oswald', sans-serif;
  font-size: 22px;
  line-height: 1.1;
  color: var(--white);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.card__desc {
  color: var(--offwhite);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 22px;
  flex: 1;
}
.card__cta {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}
.card__cta svg { width: 12px; height: 12px; transition: transform 0.25s ease; }
.card:hover .card__cta svg, .card:focus-visible .card__cta svg { transform: translateX(4px); }

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--dark-2);
  border-top: 1px solid rgba(172, 209, 85, 0.12);
  border-bottom: 1px solid rgba(172, 209, 85, 0.12);
  padding: 56px 24px;
  text-align: center;
}
.final-cta__inner {
  max-width: 760px;
  margin: 0 auto;
}
.final-cta__title {
  font-family: 'Rubik Distressed', 'Oswald', sans-serif;
  font-size: clamp(26px, 3.4vw, 40px);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
}
.final-cta__sub {
  color: var(--offwhite);
  font-size: 16px;
  margin: 0 0 26px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 14px 32px;
  border: 2px solid var(--lime);
  background: var(--lime);
  color: var(--dark);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}
.btn:hover {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 28px rgba(129, 56, 183, 0.40);
  text-decoration: none;
}
.btn.purple {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}
.btn.purple:hover {
  background: var(--gradient-hover);
  border-color: transparent;
  color: #fff;
}
.btn.outline {
  background: transparent;
  color: var(--lime);
}
.btn.outline:hover {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
}

/* ---------- Footer ---------- */
.footer {
  background: #000;
  color: var(--offwhite);
  padding: 32px 24px 22px;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(172, 209, 85, 0.10);
}
.footer__row {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.footer__brand {
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--lime);
}
.footer__small { color: rgba(207, 200, 192, 0.65); }
.footer__small a { color: var(--offwhite); text-decoration: underline; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .card, .btn, .opp-tip-flash, .opp-tip-flash::before, .opp-tip-flash::after, .card__cta svg, .card::before {
    transition: none !important;
    animation: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
