/* =========================
   GLOBAL
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #05080c;
  --surface: #0b1118;
  --text: #f5f5f5;
  --muted: #aeb8c2;
  --accent: #5b6f4a;
  --accent-green: #5b6f4a;
  --accent-soft: rgba(91, 111, 74, 0.12);
  --border: rgba(91, 111, 74, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {

  background: var(--bg);
  color: var(--text);

  font-family: 'Rajdhani', sans-serif;

  line-height: 1.7;

}

/* =========================
   CONTAINERS
========================= */

.container {
  width: 90%;
  max-width: 1250px;
  margin: 0 auto;
}

/* =========================
   NAVBAR
========================= */

.navbar {

  position: sticky;
  top: 0;

  z-index: 1000;

  background: rgba(5, 8, 12, 0.92);

  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(207, 218, 225, 0.18);

}

.nav-inner {

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 14px 0;
}

.nav-logo a {

  color: #f5f5f5;

  text-decoration: none;

  font-size: 1.4rem;
  font-weight: 700;

  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {

  display: flex;
  align-items: center;
  gap: 32px;

  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links a {

  color: #d5dbe3;

  text-decoration: none;

  font-size: 1rem;
  font-weight: 500;

  transition: 0.25s ease;
}

.nav-links a:hover {
  color: var(--accent-green);
}

.nav-links a.nav-active { color: var(--accent-green); }

/* =========================
   HERO
========================= */

.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0 3rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 20%, rgba(91,111,74,0.18), rgba(91,111,74,0.12) 12%, transparent 40%), linear-gradient(180deg, rgba(91,111,74,0.06), rgba(5,8,12,0));
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero > .container { position: relative; z-index: 2; }

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

.hero-logo-floating {
  position: absolute;
  top: 80px;
  left: 40px;
  width: 100px;
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
  transition: transform 0.3s ease;
}

.hero-logo-floating:hover {
  transform: scale(1.05);
}

.hero-logo {
  width: clamp(180px, 30vw, 280px);
  max-width: 90%;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 16px rgba(255,255,255,0.08));
}

/* Placeholder image utilities */
.placeholder-sm {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 18px;
  display: block;
}

.placeholder-md {
  width: 160px;
  height: 100px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 12px;
  display: block;
}

.placeholder-lg {
  width: 320px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin: 18px auto 0;
  display: block;
}


/* Card grid + nav favicon + hover-reveal (inserted here) */
.card-grid {
  display: grid;
  gap: 36px;
  max-width: 1180px;
  margin: 0 auto;
}

 .card-grid.card-grid-2x2 {
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  justify-content: center;
}

.card-grid.card-grid-3x2 {
  grid-template-columns: repeat(3, minmax(280px, 1fr));
  justify-content: center;
}

@media (max-width: 960px) {
  .card-grid.card-grid-2x2,
  .card-grid.card-grid-3x2 {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}

@media (max-width: 680px) {
  .card-grid.card-grid-2x2,
  .card-grid.card-grid-3x2 {
    grid-template-columns: 1fr;
  }
}

.nav-favicon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  max-width: 22px;
  max-height: 22px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  object-fit: contain;
  flex-shrink: 0;
}

.hover-reveal {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  background: rgba(255,255,255,0.01);
}

.hover-reveal h3 { z-index: 2; }

.hover-reveal p {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.28s ease, max-height 0.28s ease;
  margin-top: 0;
}

.hover-reveal:hover p,
.hover-reveal:focus {
  opacity: 1;
  max-height: 400px;
  margin-top: 12px;
}

.hover-reveal:focus { outline: 2px solid rgba(91,111,74,0.12); }

.hover-reveal:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }

.hero h1 {

  font-size: 4.3rem;
  font-weight: 700;

  line-height: 1.1;

  letter-spacing: 2px;

  text-transform: uppercase;

  margin-bottom: 28px;
}

.hero h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 4px;
  margin: 24px auto 0;
  border-radius: 999px;
  background: var(--accent-green);
}

.hero-subtitle {
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #aeb8c2;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* =========================
   BUTTONS
========================= */

.button-group {

  display: flex;
  justify-content: center;
  gap: 18px;

  flex-wrap: wrap;
}

.btn {

  display: inline-block;

  padding: 14px 28px;

  border-radius: 4px;

  text-decoration: none;

  font-weight: 600;

  letter-spacing: 1px;

  transition: 0.25s ease;
}

.btn-primary {

  background: var(--accent-green);
  color: var(--bg);
  border: 1px solid transparent;
  box-shadow: 0 18px 35px rgba(91, 111, 74, 0.18);
}

.btn-primary:hover {
  background: #708563;
}

.btn-secondary {

  border: 1px solid rgba(207, 218, 225, 0.22);

  color: #ffffff;
  background: transparent;
}

.btn-secondary:hover {

  background: rgba(91, 111, 74, 0.12);
}

.btn:focus-visible {
  outline: 2px solid var(--accent-green);
  outline-offset: 3px;
}

.nav-links a:focus-visible {
  outline: 2px solid var(--accent-green);
  outline-offset: 3px;
  border-radius: 2px;
}

.form-card {
  max-width: 850px;
  margin: 0 auto;
}

.form-field {
  margin-bottom: 24px;
  text-align: left;
}

.form-field label {
  display: inline-block;
  margin-bottom: 10px;
  color: #f5f5f5;
  font-weight: 600;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 16px;
  background: #05080c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 6px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(207, 218, 225, 0.12);
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-success {
  background: rgba(91, 111, 74, 0.12);
  border: 1px solid rgba(91, 111, 74, 0.32);
  color: #e5f3d1;
  padding: 18px;
  border-radius: 8px;
  margin-bottom: 24px;
}

/* =========================
   SECTIONS
========================= */

.section {

  padding: 120px 0;
}

.section-title {

  text-align: center;

  font-size: 2.7rem;

  margin-bottom: 70px;

  text-transform: uppercase;

  letter-spacing: 2px;

  position: relative;
  color: #ffffff;
}

.section-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  margin: 24px auto 0;
  border-radius: 999px;
  background: var(--accent);
}

/* =========================
   CARDS
========================= */

.card-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  gap: 28px;
}

.card {

  background: rgba(91, 111, 74, 0.06);

  border: 1px solid var(--border);

  padding: 36px;

  transition: 0.25s ease, transform 0.25s ease;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.card:hover {

  transform: translateY(-4px);

  border-color: rgba(207, 218, 225, 0.28);
}

.card h3 {

  font-size: 1.5rem;

  margin-bottom: 18px;
}

.card p {

  color: #aeb8c2;
}

/* =========================
   CONTENT BLOCK
========================= */

.content-block {

  max-width: 1000px;

  margin: 0 auto;

  text-align: center;
}

.content-block p {

  color: #aeb8c2;

  font-size: 1.15rem;

  margin-bottom: 26px;
}

/* =========================
   PROCESS
========================= */

.process-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));

  gap: 22px;

  text-align: center;
}

.process-step {

  padding: 28px;
}

.process-step h3 {

  font-size: 1.3rem;

  margin-bottom: 14px;
}

/* =========================
   CONTACT
========================= */

.contact-box {

  max-width: 760px;

  margin: 0 auto;

  text-align: center;
}

.contact-box p {

  color: #aeb8c2;

  margin-bottom: 30px;
}

.contact-email a {

  color: #ffffff;

  text-decoration: none;

  border-bottom: 1px solid rgba(255,255,255,0.25);

  padding-bottom: 3px;
}

/* =========================
   FOOTER
========================= */

footer {

  border-top: 1px solid rgba(91, 111, 74, 0.16);

  text-align: center;

  padding: 60px 20px;
}

.footer-icon {
  width: 48px;
  margin: 0 auto 18px auto;
  display: block;
  opacity: 0.95;
}

.footer-logo {

  width: 90px;

  margin-bottom: 22px;

  opacity: 0.9;
}

footer p {

  color: #8f99a4;

  margin-bottom: 10px;
}

footer a { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.15); }
footer a:hover { color: var(--text); }

/* =========================
   MOBILE
========================= */

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(207,218,225,.22);
  border-radius: 4px;
  cursor: pointer;
  padding: 7px 10px;
  color: var(--text);
  line-height: 1;
}
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: background .2s;
}
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  position: absolute;
  transition: transform .25s ease;
}
.nav-toggle-bar::before { top: -6px; }
.nav-toggle-bar::after  { top:  6px; }
.navbar--open .nav-toggle-bar              { background: transparent; }
.navbar--open .nav-toggle-bar::before      { transform: translateY(6px) rotate(45deg); }
.navbar--open .nav-toggle-bar::after       { transform: translateY(-6px) rotate(-45deg); }

.premise-grid   { display: grid; grid-template-columns: 1fr 1.8fr; gap: 60px; align-items: start; }
.premise-sticky { position: sticky; top: 100px; }

@media (max-width: 900px) {
  .hero h1       { font-size: 2.8rem; }
  .hero-subtitle { font-size: 1.08rem; }
  .section-title { font-size: 2rem; }

  .nav-inner { flex-wrap: nowrap; }
  .nav-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0 16px;
    background: rgba(5,8,12,.97);
    border-bottom: 1px solid rgba(91,111,74,.22);
    z-index: 999;
  }
  .nav-links li { width: 100%; }
  .nav-links a  { display: block; padding: 10px 24px; width: 100%; }
  .navbar--open .nav-links { display: flex; }

  .premise-grid   { grid-template-columns: 1fr; gap: 32px; }
  .premise-sticky { position: static; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== Cinematic hero ===== */
.hero { min-height: 94vh; overflow: hidden; padding: 9rem 0 5rem; }
.hero-bg { position: absolute; inset: -8% -4%; z-index: 1; will-change: transform; }
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .5;
  animation: kenburns 26s ease-in-out infinite alternate; will-change: transform;
}
@keyframes kenburns {
  0%   { transform: scale(1.06) translate(0, 0); }
  100% { transform: scale(1.20) translate(-2.2%, -1.6%); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(5,8,12,.62) 0%, rgba(5,8,12,.42) 38%, rgba(5,8,12,.78) 78%, rgba(5,8,12,1) 100%);
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: radial-gradient(circle at 50% 42%, transparent 30%, rgba(5,8,12,.55) 100%);
}
.hero-content { position: relative; z-index: 3; }
.hero h1 { text-shadow: 0 6px 40px rgba(0,0,0,.6); }
.hero-subtitle { text-shadow: 0 2px 18px rgba(0,0,0,.5); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 26px; padding: 7px 16px;
  border: 1px solid rgba(91,111,74,.45); border-radius: 999px;
  background: rgba(91,111,74,.08);
  font-size: .78rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: #9fb088;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 10px 2px rgba(91,111,74,.7);
}

/* ===== Sticky nav scroll state ===== */
.navbar--solid {
  background: rgba(5,8,12,.9);
  border-bottom-color: rgba(91,111,74,.22);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}

/* ===== Cleaner service cards ===== */
.card--service {
  position: relative; display: flex; flex-direction: column;
  border-radius: 6px; padding: 34px 34px 30px; overflow: hidden;
  background: linear-gradient(180deg, rgba(91,111,74,.07), rgba(91,111,74,.02));
  border: 1px solid rgba(91,111,74,.20);
  transition: transform .35s cubic-bezier(.22,.61,.36,1), border-color .35s, box-shadow .35s;
}
.card--service .card-bar {
  position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform .45s ease;
}
.card--service:hover { transform: translateY(-7px); border-color: rgba(207,218,225,.3);
  box-shadow: 0 30px 60px rgba(0,0,0,.32); }
.card--service:hover .card-bar { transform: scaleX(1); }
.card-kicker {
  display: block; margin-bottom: 16px;
  font-size: .72rem; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: #8f99a4;
}
.card--service h3 { font-size: 1.5rem; line-height: 1.2; margin-bottom: 14px; }
.card--service p { color: #aeb8c2; }
.card-divider {
  display: block; height: 1px; margin: 22px 0 18px;
  background: linear-gradient(90deg, rgba(91,111,74,.3), transparent);
}
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.chips li {
  font-size: .8rem; font-weight: 600; letter-spacing: .4px;
  color: #c3d6b4;
  background: rgba(91,111,74,.13); border: 1px solid rgba(91,111,74,.30);
  padding: 5px 12px; border-radius: 999px;
}

/* ===== Scroll reveals ===== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .85s cubic-bezier(.22,.61,.36,1),
              transform .95s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .hero-bg-img { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ===== Section kicker ===== */
.kicker { display: block; font-size: .8rem; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: color-mix(in srgb, var(--accent), #cfe0bf 50%); margin-bottom: 14px; }
.kicker--center { text-align: center; }

/* ===== Inner hero (sub-pages) ===== */
.hero--inner { min-height: 64vh; padding: 10rem 0 4.5rem; }
.hero--inner h1 { font-size: 4rem; }

/* ===== Checklist ===== */
.svc-list { list-style: none; display: grid; gap: 10px; margin: 0; }
.svc-list li { display: flex; gap: 11px; align-items: flex-start; color: #c3ccd6; font-size: 1.02rem; }
.svc-list li::before { content: "›"; color: var(--accent); font-weight: 700; line-height: 1.5; }

/* ===== Image cards (who-we-help) ===== */
.imgcard { position: relative; display: flex; flex-direction: column; border-radius: 8px; overflow: hidden;
  background: linear-gradient(180deg, rgba(91,111,74,.07), rgba(91,111,74,.02));
  border: 1px solid rgba(91,111,74,.20); box-shadow: 0 18px 40px rgba(0,0,0,.18);
  transition: transform .35s cubic-bezier(.22,.61,.36,1), border-color .35s, box-shadow .35s; }
.imgcard:hover { transform: translateY(-8px); border-color: rgba(207,218,225,.3); box-shadow: 0 34px 64px rgba(0,0,0,.34); }
.imgcard__media { position: relative; height: 172px; overflow: hidden; }
.imgcard__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s cubic-bezier(.22,.61,.36,1); }
.imgcard:hover .imgcard__media img { transform: scale(1.08); }
.imgcard__media::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,8,12,.15), rgba(5,8,12,.78)); }
.imgcard__tag { position: absolute; left: 18px; bottom: 14px; z-index: 1; font-size: .7rem; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; color: #cdd6df; }
.imgcard__body { padding: 26px 26px 30px; }
.imgcard__body h3 { font-size: 1.4rem; line-height: 1.2; margin-bottom: 12px; }
.imgcard__body p { color: #aeb8c2; font-size: 1.02rem; }

/* ===== Pull-quote panel ===== */
.quote-panel { position: relative; overflow: hidden; border-radius: 12px; padding: 60px 56px;
  background: linear-gradient(135deg, rgba(91,111,74,.12), rgba(91,111,74,.03)); border: 1px solid rgba(91,111,74,.22); }
.quote-panel .mark { position: absolute; top: -40px; right: -10px; font-size: 11rem; line-height: 1;
  font-weight: 700; color: rgba(91,111,74,.12); pointer-events: none; }
.quote-panel .lead { color: #e7ecf2; font-size: 1.5rem; line-height: 1.5; font-weight: 500; max-width: 780px; margin-bottom: 24px; }

/* ===== CTA panel ===== */
.cta-panel { text-align: center; border-radius: 10px; padding: 60px 40px; max-width: 820px; margin: 0 auto;
  background: linear-gradient(180deg, rgba(91,111,74,.10), rgba(91,111,74,.03)); border: 1px solid rgba(91,111,74,.22); }

/* ===== Dark form fields (contact) ===== */
.nsg-field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.nsg-field label { font-size: .76rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: #aeb8c2; }
.nsg-field input, .nsg-field select, .nsg-field textarea {
  width: 100%; background: rgba(8,12,17,.6); border: 1px solid rgba(207,218,225,.16);
  border-radius: 5px; color: #f1f4f7; font-family: 'Rajdhani', sans-serif;
  font-size: 1.05rem; font-weight: 500; padding: 13px 15px; outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s; }
.nsg-field textarea { resize: vertical; min-height: 150px; line-height: 1.5; }
.nsg-field input::placeholder, .nsg-field textarea::placeholder { color: #6f7a85; }
.nsg-field input:focus, .nsg-field select:focus, .nsg-field textarea:focus {
  border-color: rgba(91,111,74,.75); box-shadow: 0 0 0 3px rgba(91,111,74,.18); background: rgba(8,12,17,.85); }
.nsg-field select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 38px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2 4l4 4 4-4' stroke='%239fb088' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat; background-position: right 15px center; }
.nsg-field select option { background: #0b0f15; color: #f1f4f7; }

@media (max-width: 860px) { .nsg-contact-grid { grid-template-columns: 1fr !important; } }

/* ===== Contact page blue accent ===== */
.contact-page { --accent: #3f86c4; }

/* ===== Aurora hero (contact page) ===== */
.hero--aurora { background: #010308; }
.aurora-sky { position: absolute; inset: 0; overflow: hidden; z-index: 1; }
.nsg-stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 22%, rgba(255,255,255,.75) 0%, transparent 100%),
    radial-gradient(1px 1px at 52% 14%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 72% 52%, rgba(255,255,255,.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 38% 68%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 8% 58%, rgba(255,255,255,.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 82% 24%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 62% 78%, rgba(255,255,255,.45) 0%, transparent 100%),
    radial-gradient(1px 1px at 28% 42%, rgba(255,255,255,.55) 0%, transparent 100%),
    radial-gradient(1px 1px at 92% 64%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 46% 88%, rgba(255,255,255,.35) 0%, transparent 100%);
}
.aurora-wrap { position: absolute; inset: 0; }
.aurora {
  position: absolute; top: -20%; height: 110%; width: 34%;
  opacity: .82; mix-blend-mode: screen; filter: blur(32px);
}
.aurora::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(40,220,80,.9)  0%,
    rgba(0,210,160,.8) 35%,
    rgba(20,160,255,.7) 65%,
    rgba(10,90,200,.55) 100%);
  border-radius: 40% 60% 60% 40% / 50% 40% 60% 50%;
}
.aurora::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg,
    transparent 0px, transparent 6px,
    rgba(255,255,255,.04) 6px, rgba(255,255,255,.04) 12px);
}
.aurora-a { left: 4%;  animation: aur1 20s ease-in-out infinite alternate; }
.aurora-b { left: 19%; animation: aur2 25s ease-in-out infinite alternate; }
.aurora-c { left: 36%; animation: aur3 18s ease-in-out infinite alternate; }
.aurora-d { left: 54%; animation: aur4 22s ease-in-out infinite alternate; }
.aurora-e { left: 70%; animation: aur1 28s ease-in-out infinite alternate-reverse; }
.aurora-a::before { animation: hue-a 38s ease-in-out infinite; }
.aurora-b::before { animation: hue-b 45s ease-in-out infinite; }
.aurora-c::before { animation: hue-c 32s ease-in-out infinite; }
.aurora-d::before { animation: hue-d 52s ease-in-out infinite; }
.aurora-e::before { animation: hue-e 41s ease-in-out infinite; }

@keyframes aur1 {
  0%   { transform: translateX(0)    translateY(0)    scaleX(1)    skewX(0deg);  opacity: .65; }
  50%  { transform: translateX(-5%)  translateY(-10%) scaleX(1.12) skewX(4deg);  opacity: .88; }
  100% { transform: translateX(4%)   translateY(6%)   scaleX(.9)   skewX(-3deg); opacity: .72; }
}
@keyframes aur2 {
  0%   { transform: translateX(6%)   translateY(-6%)  scaleX(.92)  skewX(3deg);  opacity: .78; }
  50%  { transform: translateX(-4%)  translateY(9%)   scaleX(1.08) skewX(-4deg); opacity: .62; }
  100% { transform: translateX(7%)   translateY(0)    scaleX(1.14) skewX(2deg);  opacity: .86; }
}
@keyframes aur3 {
  0%   { transform: translateX(-3%)  translateY(4%)   scaleX(1)    skewX(-2deg); opacity: .72; }
  60%  { transform: translateX(7%)   translateY(-8%)  scaleX(.88)  skewX(5deg);  opacity: .90; }
  100% { transform: translateX(-5%)  translateY(3%)   scaleX(1.1)  skewX(0deg);  opacity: .68; }
}
@keyframes aur4 {
  0%   { transform: translateX(5%)   translateY(-4%)  scaleX(1.06) skewX(2deg);  opacity: .80; }
  40%  { transform: translateX(-6%)  translateY(7%)   scaleX(.94)  skewX(-3deg); opacity: .62; }
  100% { transform: translateX(4%)   translateY(-2%)  scaleX(1)    skewX(1deg);  opacity: .84; }
}
@keyframes hue-a { 0%, 100% { filter: hue-rotate(0deg); }   50% { filter: hue-rotate(40deg); } }
@keyframes hue-b { 0%, 100% { filter: hue-rotate(25deg); }  50% { filter: hue-rotate(70deg); } }
@keyframes hue-c { 0%, 100% { filter: hue-rotate(50deg); }  50% { filter: hue-rotate(100deg); } }
@keyframes hue-d { 0%, 100% { filter: hue-rotate(70deg); }  50% { filter: hue-rotate(120deg); } }
@keyframes hue-e { 0%, 100% { filter: hue-rotate(90deg); }  50% { filter: hue-rotate(140deg); } }

.pine { position: absolute; z-index: 2; pointer-events: none; }
.pine--front { left: -46px; bottom: -1px; height: 94%; max-height: 640px; }
.pine--back  { left: 128px; bottom: -1px; height: 62%; opacity: .92; }

.hero-overlay--light {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(1,3,8,.35) 0%, rgba(1,3,8,.15) 35%, rgba(1,3,8,.5) 75%, rgba(1,3,8,.92) 100%);
}

@media (prefers-reduced-motion: reduce) {
  .aurora         { animation: none; }
  .aurora::before { animation: none; }
}

/* ===== Homepage blue accent override ===== */
.home-page {
  --accent: #80b8e8;
  --accent-green: #80b8e8;
  --accent-soft: rgba(128,184,232,0.12);
  --border: rgba(128,184,232,0.18);
}
.home-page .hero-badge {
  border-color: rgba(128,184,232,.45);
  background: rgba(128,184,232,.08);
  color: #a8cde8;
}
.home-page .hero-badge-dot {
  box-shadow: 0 0 10px 2px rgba(128,184,232,.7);
}
.home-page .card--service {
  background: linear-gradient(180deg, rgba(128,184,232,.07), rgba(128,184,232,.02));
  border-color: rgba(128,184,232,.20);
}
.home-page .card--service:hover { border-color: rgba(207,218,225,.3); }
.home-page .card-divider {
  background: linear-gradient(90deg, rgba(128,184,232,.3), transparent);
}
.home-page .chips li {
  color: #b4d5ef;
  background: rgba(128,184,232,.13);
  border-color: rgba(128,184,232,.30);
}
.home-page .navbar--solid { border-bottom-color: rgba(128,184,232,.22); }
.home-page .btn-primary { box-shadow: 0 18px 35px rgba(128,184,232,.18); }
.home-page .btn-primary:hover { background: #5fa3dc; }
.home-page .btn-secondary:hover { background: rgba(128,184,232,.12); }
