/* =========================================================
   Plastics & Planners — PureCycle-inspired redesign
   Clean white canvas, bold headline, soft shadows, green clean-tech accents
   ========================================================= */

:root {
  --bg: #ffffff;
  --ink: #0b1220;
  --muted: #475569;
  --muted2: #64748b;
  --line: rgba(2, 8, 23, 0.1);

  --accent1: #22c55e;
  --accent2: #16a34a;
  --accent3: #86efac;
  --tint: rgba(34, 197, 94, 0.1);
  --wash: #f7fafc;

  --shadow: 0 18px 60px rgba(2, 8, 23, 0.1);
  --shadow2: 0 10px 30px rgba(2, 8, 23, 0.08);

  --r: 18px;
  --r2: 26px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial;
  background: var(--bg);
  color: var(--ink);
  text-rendering: geometricPrecision;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
}
.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 240px;
}
.brand__mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
}
.brand__mark img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.brand__text strong {
  display: block;
  font-size: 14px;
  letter-spacing: 0.2px;
  font-weight: 900;
}
.brand__text small {
  display: block;
  font-size: 12px;
  color: var(--muted2);
  margin-top: 2px;
}

.nav {
  display: flex;
  gap: 12px;
  align-items: center;
}
.nav a {
  padding: 10px 10px;
  border-radius: 12px;
  font-weight: 900;
  color: rgba(2, 8, 23, 0.78);
}
.nav a:hover {
  background: rgba(2, 8, 23, 0.04);
}

.nav__toggle {
  display: none;
}
.mobileNav {
  padding: 0 0 14px;
}
.mobileNav a {
  display: block;
  padding: 12px 10px;
  border-radius: 14px;
  font-weight: 900;
  color: rgba(2, 8, 23, 0.82);
}
.mobileNav a:hover {
  background: rgba(2, 8, 23, 0.04);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 950;
  letter-spacing: 0.2px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition:
    transform 0.08s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.btn:hover {
  box-shadow: 0 14px 40px rgba(2, 8, 23, 0.1);
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  border: 1px solid rgba(2, 8, 23, 0.1);
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  color: #fff;
  box-shadow: 0 18px 44px rgba(22, 163, 74, 0.22);
}
.btn--outline {
  background: #fff;
  color: var(--ink);
}
.btn--ghost {
  background: #fff;
  box-shadow: none;
}

/* Typography helpers */
.muted {
  color: var(--muted);
  line-height: 1.75;
}
.small {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.6;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(2, 8, 23, 0.66);
  font-weight: 950;
  margin-bottom: 10px;
}

/* Hero */
.hero {
  padding: 52px 0 18px;
  position: relative;
}
.hero:before {
  content: "";
  position: absolute;
  inset: -160px -80px auto -80px;
  height: 420px;
  background:
    radial-gradient(closest-side, rgba(20, 184, 166, 0.18), transparent 70%),
    radial-gradient(closest-side, rgba(37, 99, 235, 0.16), transparent 70%);
  filter: blur(2px);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}
.hero__kicker {
  font-weight: 950;
  color: rgba(2, 8, 23, 0.6);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 12px;
}
.hero__title {
  margin: 8px 0 0;
  font-size: 74px;
  line-height: 0.96;
  letter-spacing: -2px;
  font-weight: 950;
}
.hero__sub {
  margin: 14px 0 0;
  max-width: 65ch;
  font-size: 16px;
}
.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.hero__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.pill {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(2, 8, 23, 0.02);
  font-weight: 900;
  color: rgba(2, 8, 23, 0.72);
  font-size: 13px;
}

/* Hero media */
.hero__media {
  display: grid;
  gap: 12px;
}
.mediaCard {
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
  position: relative;
}
.mediaCard img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: contrast(1.06) saturate(1.03);
}
.mediaCard__overlay {
  position: absolute;
  inset: auto 14px 14px 14px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(2, 8, 23, 0.5);
  backdrop-filter: blur(10px);
  color: #fff;
}
.mediaCard__tag {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
  font-weight: 900;
}
.mediaCard__title {
  margin-top: 6px;
  font-weight: 950;
  font-size: 16px;
  letter-spacing: -0.2px;
}

.stats {
  border-radius: var(--r2);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow2);
  padding: 16px;
  display: grid;
  gap: 10px;
}
.stat {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(2, 8, 23, 0.06);
  background: rgba(2, 8, 23, 0.02);
}
.stat__label {
  font-weight: 950;
  color: rgba(2, 8, 23, 0.66);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.stat__value {
  font-weight: 950;
  color: var(--ink);
}

/* Sections */
.section {
  padding: 42px 0;
}
.section--tint {
  background: var(--wash);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__head {
  margin-bottom: 16px;
}
h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.8px;
}

/* Layout helpers */
.row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 14px;
}
.divider {
  height: 1px;
  background: var(--line);
  margin: 14px 0;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  align-items: start;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Cards */
.card,
.callout,
.partnerCard,
.featureCard,
.newsCard {
  border-radius: var(--r2);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow2);
  padding: 18px;
}
.card h3,
.callout h3,
.partnerCard h3,
.featureCard h3,
.newsCard h3 {
  margin: 0 0 6px;
  font-weight: 950;
  letter-spacing: -0.3px;
}
.card p,
.callout p,
.partnerCard p,
.featureCard p,
.newsCard p {
  margin: 0;
}

.featureCard__top {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(2, 8, 23, 0.1);
  background: rgba(2, 8, 23, 0.02);
  font-weight: 950;
  font-size: 12px;
  color: rgba(2, 8, 23, 0.78);
}
.chip--ghost {
  background: #fff;
}
.chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 10px;
}
.checklist li {
  position: relative;
  padding-left: 28px;
  color: rgba(2, 8, 23, 0.76);
  font-weight: 800;
}
.checklist li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  box-shadow: 0 10px 18px rgba(22, 163, 74, 0.22);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pillar {
  border-radius: var(--r2);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow2);
  padding: 18px;
}
.pillar__title {
  font-weight: 950;
  letter-spacing: -0.2px;
  margin-bottom: 6px;
}

/* Process list */
.steps {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(2, 8, 23, 0.76);
  line-height: 1.8;
  font-weight: 700;
}

/* Logo strip */
.logoStrip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 14px 0;
}
.logoPill {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(2, 8, 23, 0.1);
  background: #fff;
  font-weight: 950;
  color: rgba(2, 8, 23, 0.7);
}

.partnerGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

/* News */
.newsCard {
  position: relative;
  overflow: hidden;
}
.newsCard:before {
  content: "";
  position: absolute;
  inset: -60px -60px auto auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(
    closest-side,
    rgba(22, 163, 74, 0.22),
    transparent 70%
  );
  pointer-events: none;
}
.newsCard__date {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(2, 8, 23, 0.56);
  font-weight: 950;
  margin-bottom: 10px;
}
.link {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 950;
  color: rgba(37, 99, 235, 0.95);
}
.link:hover {
  text-decoration: underline;
}

/* Forms */
.form {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
.form label {
  display: grid;
  gap: 6px;
}
.form span {
  font-weight: 950;
  font-size: 12px;
  color: rgba(2, 8, 23, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.9px;
}
input,
select,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  font: inherit;
  background: #fff;
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  background: #fff;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer__mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
  overflow: hidden;
  background: #fff;
  display: grid;
  place-items: center;
}
.footer__mark img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
.footer__right {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.footer__links a {
  font-weight: 950;
  color: rgba(2, 8, 23, 0.72);
}
.footer__links a:hover {
  text-decoration: underline;
}
.footer__meta {
  color: rgba(2, 8, 23, 0.55);
  font-weight: 800;
}

/* Responsive */
@media (max-width: 980px) {
  .nav {
    display: none;
  }
  .nav__toggle {
    display: inline-flex;
  }
  .hero__grid,
  .split,
  .grid2 {
    grid-template-columns: 1fr;
  }
  .mediaCard img {
    height: 340px;
  }
  .grid3 {
    grid-template-columns: 1fr;
  }
  .pillars {
    grid-template-columns: 1fr;
  }
  .partnerGrid {
    grid-template-columns: 1fr;
  }
  .hero__title {
    font-size: 56px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-top: 40px;
  }
  .hero__title {
    font-size: 46px;
  }
  .brand {
    min-width: auto;
  }
}
/* ===== Home Video Hero (PureCycle-inspired) ===== */
.home--video {
  background: #05080f;
}

.topbar--onVideo {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.62),
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0)
  );
  backdrop-filter: saturate(1.1);
}

.nav--minimal a {
  opacity: 0.92;
}

.heroVideo {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.heroVideo__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.heroVideo__overlay {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 54px;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.72),
    rgba(0, 0, 0, 0.35) 35%,
    rgba(0, 0, 0, 0.1) 70%,
    rgba(0, 0, 0, 0) 100%
  );
}

.heroVideo__content {
  max-width: 980px;
}

.heroVideo__kicker {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.92;
  margin-bottom: 10px;
}

.heroVideo__title {
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  color: #fff;
}

.heroVideo__sub {
  max-width: 64ch;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.55;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.9);
}

.heroVideo__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

/* Buttons/pills on video */
.btn--onVideo {
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: rgba(255, 255, 255, 0.95) !important;
}

.pill--onVideo {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.heroVideo__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer--onVideo {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer--onVideo a,
.footer--onVideo .footer__meta {
  color: rgba(255, 255, 255, 0.85);
}

/* Mobile spacing */
@media (max-width: 720px) {
  .heroVideo__overlay {
    padding: 110px 0 38px;
  }
}
/* ================================
   AQUA + BLUE (Ocean Tech) Theme
   Paste at END of css/styles.css
==================================*/

:root {
  --ocean-950: #031427;
  --ocean-900: #051b33;
  --ocean-800: #07264a;

  --aqua-500: #20e3d2;
  --aqua-600: #10cdbf;

  --sky-500: #3aa0ff;
  --sky-600: #1b7cff;

  --text-on: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.88);
  --line: rgba(255, 255, 255, 0.14);
  --glass: rgba(255, 255, 255, 0.1);
  --glass2: rgba(255, 255, 255, 0.14);
}

/* Body background becomes ocean gradient, not black */
.home--video {
  background:
    radial-gradient(
      1200px 800px at 20% 15%,
      rgba(32, 227, 210, 0.18),
      transparent 55%
    ),
    radial-gradient(
      900px 700px at 80% 10%,
      rgba(58, 160, 255, 0.18),
      transparent 50%
    ),
    linear-gradient(135deg, var(--ocean-900), var(--ocean-950) 60%, #020a14);
}

/* Topbar glass looks lighter + bluish */
.topbar--onVideo {
  background: linear-gradient(
    to bottom,
    rgba(3, 20, 39, 0.75),
    rgba(3, 20, 39, 0.35),
    rgba(3, 20, 39, 0)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px) saturate(1.2);
}

.topbar--onVideo .brand__text strong,
.topbar--onVideo .nav a {
  color: rgba(255, 255, 255, 0.92);
}

.topbar--onVideo .brand__text small {
  color: rgba(255, 255, 255, 0.7);
}

/* Make hero overlay more “aqua/blue” and less dark */
.heroVideo__overlay {
  background:
    radial-gradient(
      800px 520px at 20% 80%,
      rgba(32, 227, 210, 0.22),
      transparent 60%
    ),
    radial-gradient(
      700px 520px at 80% 70%,
      rgba(58, 160, 255, 0.18),
      transparent 62%
    ),
    linear-gradient(
      to top,
      rgba(3, 20, 39, 0.7),
      rgba(3, 20, 39, 0.35) 45%,
      rgba(3, 20, 39, 0.1) 78%,
      rgba(3, 20, 39, 0)
    );
}

/* Headline stays crisp */
.heroVideo__title {
  color: var(--text-on);
}

/* Subtext slightly brighter */
.heroVideo__sub {
  color: var(--text-soft);
}

/* Primary button becomes aqua gradient */
.btn.btn--primary {
  background: linear-gradient(135deg, var(--aqua-500), var(--sky-500));
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #00151e;
  box-shadow: 0 10px 24px rgba(16, 205, 191, 0.18);
}

.btn.btn--primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

/* Outline button on video: bluish glass */
.btn--outline.btn--onVideo {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: rgba(255, 255, 255, 0.95) !important;
}

.btn--outline.btn--onVideo:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* Pills: aqua/blue glass chips */
.pill--onVideo {
  background: linear-gradient(
    135deg,
    rgba(32, 227, 210, 0.14),
    rgba(58, 160, 255, 0.12)
  );
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

/* Footer also gets lighter glass edge */
.footer--onVideo {
  background: rgba(3, 20, 39, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.footer--onVideo a,
.footer--onVideo .footer__meta {
  color: rgba(255, 255, 255, 0.8);
}

/* Optional: if video still feels dark, lift it slightly */
.heroVideo__media {
  filter: brightness(1.08) contrast(1.02) saturate(1.08);
}

/* Mobile tweaks */
@media (max-width: 720px) {
  .topbar--onVideo {
    background: linear-gradient(
      to bottom,
      rgba(3, 20, 39, 0.82),
      rgba(3, 20, 39, 0.45),
      rgba(3, 20, 39, 0)
    );
  }
}
/* ================================
   Premium Thin Typography
==================================*/

:root {
  --font-body:
    "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-display:
    "Manrope", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Body */
body {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Brand text */
.brand__text strong {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.brand__text small {
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Hero kicker becomes elegant */
.heroVideo__kicker {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Main hero title: thin, premium */
.heroVideo__title {
  font-family: var(--font-display);
  font-weight: 200; /* thin */
  letter-spacing: -0.04em;
  text-transform: none;
}

/* Subtext */
.heroVideo__sub {
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0.005em;
}

/* Nav links feel premium */
.nav a {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Buttons slightly tighter + premium */
.btn {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Pills */
.pill {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* If you later add H2/H3 sections, they’ll match */
h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

h2 {
  font-weight: 300;
}
h3 {
  font-weight: 400;
}
/* ================================
   Services Page (Aqua/Blue Premium)
================================== */

.page--services .main {
  padding-top: 96px;
}

.svcHero {
  padding: 54px 0 26px;
  background:
    radial-gradient(
      1000px 700px at 20% 20%,
      rgba(32, 227, 210, 0.18),
      transparent 58%
    ),
    radial-gradient(
      900px 600px at 85% 10%,
      rgba(58, 160, 255, 0.16),
      transparent 55%
    ),
    linear-gradient(135deg, rgba(3, 20, 39, 0.85), rgba(3, 20, 39, 0.55));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.svcHero__grid {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.svcHero__title {
  font-family: var(--font-display, "Manrope", system-ui);
  font-weight: 200;
  letter-spacing: -0.04em;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
  margin: 8px 0 12px;
  color: rgba(255, 255, 255, 0.97);
}

.svcHero__sub {
  max-width: 66ch;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 18px;
}

.svcHero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.svcHero__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.svcHero__card .glassCard {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(12px);
}

.glassCard__top {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.noteBar {
  margin-top: 16px;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
}

.card--aqua {
  background: linear-gradient(
    135deg,
    rgba(32, 227, 210, 0.1),
    rgba(58, 160, 255, 0.08)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.priceCard {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(10px);
}

.priceCard__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.btn--block {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 12px;
}

.faq {
  display: grid;
  gap: 12px;
}
.faqItem {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 12px 14px;
}
.faqItem summary {
  cursor: pointer;
  font-family: var(--font-display, "Manrope", system-ui);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
}
.faqItem p {
  margin: 10px 0 0;
}

.section--cta {
  background:
    radial-gradient(
      900px 500px at 25% 60%,
      rgba(32, 227, 210, 0.18),
      transparent 65%
    ),
    radial-gradient(
      800px 500px at 80% 30%,
      rgba(58, 160, 255, 0.14),
      transparent 65%
    ),
    rgba(3, 20, 39, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}
.cta__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .svcHero__grid {
    grid-template-columns: 1fr;
  }
  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ================================
   Global Topbar: Dark + Consistent
   Paste at END of css/styles.css
==================================*/

:root {
  --topbar-bg: rgba(3, 14, 28, 0.78); /* deep ocean glass */
  --topbar-bg2: rgba(3, 14, 28, 0.55);
  --topbar-border: rgba(255, 255, 255, 0.1);
  --topbar-text: rgba(255, 255, 255, 0.92);
  --topbar-sub: rgba(255, 255, 255, 0.7);
}

/* Make header fixed + consistent */
.topbar,
.topbar--onVideo {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  background: linear-gradient(
    to bottom,
    var(--topbar-bg),
    var(--topbar-bg2),
    rgba(3, 14, 28, 0)
  );
  border-bottom: 1px solid var(--topbar-border);

  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
}

/* Give pages room under fixed header */
body {
  padding-top: 78px;
}

/* Brand text */
.topbar .brand__text strong {
  color: var(--topbar-text) !important;
}

.topbar .brand__text small {
  color: var(--topbar-sub) !important;
}

/* Nav links */
.topbar .nav a {
  color: rgba(255, 255, 255, 0.85) !important;
}

.topbar .nav a:hover {
  color: rgba(255, 255, 255, 0.96) !important;
}

/* Active page link */
.topbar .nav a[aria-current="page"] {
  color: rgba(255, 255, 255, 0.98) !important;
  position: relative;
}

.topbar .nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -14px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(32, 227, 210, 0.9),
    rgba(58, 160, 255, 0.9)
  );
  border-radius: 99px;
}

/* Menu button (mobile) */
.topbar .nav__toggle {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Contact button stays premium */
.topbar .btn--primary {
  background: linear-gradient(
    135deg,
    rgba(32, 227, 210, 0.95),
    rgba(58, 160, 255, 0.95)
  ) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  color: #00151e !important;
}

/* Mobile nav panel */
.mobileNav {
  margin-top: 10px;
  background: rgba(3, 14, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 10px 12px;
  backdrop-filter: blur(14px);
}

.mobileNav a {
  display: block;
  padding: 10px 8px;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.mobileNav a:hover {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

/* Make the logo slightly crisper on dark */
.brand__mark img,
.footer__mark img {
  filter: saturate(1.05) contrast(1.05);
}
/* ================================
   Fix the top gap under fixed header
   Make it ALWAYS ocean/consistent
==================================*/

/* Create a consistent "backplate" behind the fixed header */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 120px; /* covers header + any gap */
  z-index: 0; /* behind header/content */
  background:
    radial-gradient(
      900px 520px at 15% 10%,
      rgba(32, 227, 210, 0.22),
      transparent 60%
    ),
    radial-gradient(
      800px 520px at 85% 15%,
      rgba(58, 160, 255, 0.18),
      transparent 62%
    ),
    linear-gradient(
      to bottom,
      rgba(3, 14, 28, 0.92),
      rgba(3, 14, 28, 0.55),
      rgba(3, 14, 28, 0)
    );
  pointer-events: none;
}

/* Ensure header stays above that backplate */
.topbar {
  z-index: 1000;
}

/* Remove double spacing issues:
   Keep ONLY body padding for header clearance */
body {
  padding-top: 78px;
}

/* If any page adds extra top padding, neutralize it */
.main {
  padding-top: 0 !important;
}

/* Services hero should sit nicely under header, not create a white band */
.svcHero {
  margin-top: 0 !important;
  padding-top: 48px; /* comfortable spacing under header */
}
/* ================================
   About Page (Aqua/Blue Premium)
================================== */

.page--about .main {
  padding-top: 0 !important;
}

.abtHero {
  padding: 54px 0 26px;
  background:
    radial-gradient(
      1000px 700px at 20% 20%,
      rgba(32, 227, 210, 0.18),
      transparent 58%
    ),
    radial-gradient(
      900px 600px at 85% 10%,
      rgba(58, 160, 255, 0.16),
      transparent 55%
    ),
    linear-gradient(135deg, rgba(3, 20, 39, 0.85), rgba(3, 20, 39, 0.55));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.abtHero__grid {
  display: grid;
  grid-template-columns: 1.55fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.abtHero__title {
  font-family: var(--font-display, "Manrope", system-ui);
  font-weight: 200;
  letter-spacing: -0.04em;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
  margin: 8px 0 12px;
  color: rgba(255, 255, 255, 0.97);
}

.abtHero__sub {
  max-width: 66ch;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 18px;
}

.abtHero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.abtHero__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.abtHero__card .glassCard {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(12px);
}

.statsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.statCard {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px;
  backdrop-filter: blur(10px);
}

.statCard__label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
}

.statCard__value {
  font-family: var(--font-display, "Manrope", system-ui);
  font-weight: 300;
  letter-spacing: -0.02em;
  font-size: 22px;
  margin-top: 8px;
}

.statCard__hint {
  margin-top: 6px;
  opacity: 0.78;
  font-size: 14px;
}

.personCard {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(10px);
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(32, 227, 210, 0.25),
    rgba(58, 160, 255, 0.22)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .abtHero__grid {
    grid-template-columns: 1fr;
  }
  .statsGrid {
    grid-template-columns: 1fr;
  }
}
/* ================================
   Contact Page (Aqua/Blue Premium)
================================== */

.page--contact .main {
  padding-top: 0 !important;
}

.ctHero {
  padding: 54px 0 26px;
  background:
    radial-gradient(
      1000px 700px at 20% 20%,
      rgba(32, 227, 210, 0.18),
      transparent 58%
    ),
    radial-gradient(
      900px 600px at 85% 10%,
      rgba(58, 160, 255, 0.16),
      transparent 55%
    ),
    linear-gradient(135deg, rgba(3, 20, 39, 0.85), rgba(3, 20, 39, 0.55));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ctHero__grid {
  display: grid;
  grid-template-columns: 1.55fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.ctHero__title {
  font-family: var(--font-display, "Manrope", system-ui);
  font-weight: 200;
  letter-spacing: -0.04em;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
  margin: 8px 0 12px;
  color: rgba(255, 255, 255, 0.97);
}

.ctHero__sub {
  max-width: 66ch;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 18px;
}

.ctHero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.ctHero__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ctHero__card .glassCard {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(12px);
}

.mapCard {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.mapCard iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

@media (max-width: 900px) {
  .ctHero__grid {
    grid-template-columns: 1fr;
  }
  .mapCard iframe {
    height: 320px;
  }
}
@media (max-width: 980px) {
  .nav.nav--minimal a:not(.btn) {
    display: none;
  }
  .nav__toggle {
    display: inline-flex;
  }
}
/* ================================
   Leadership (About Page)
================================== */

.leadBlock {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(10px);
}

.leadBlock__head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: baseline;
  margin-bottom: 14px;
}

.leadBlock__head h3 {
  margin: 0;
  font-family: var(--font-display, "Manrope", system-ui);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.94);
}

.leadBlock__head p {
  margin: 0;
  max-width: 70ch;
}

.role {
  font-family: var(--font-display, "Manrope", system-ui);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: 0.78;
  margin: 6px 0 10px;
}

.personCard--prime {
  border-color: rgba(32, 227, 210, 0.22);
  background: linear-gradient(
    135deg,
    rgba(32, 227, 210, 0.12),
    rgba(58, 160, 255, 0.06)
  );
}

.avatar--aqua {
  background: linear-gradient(
    135deg,
    rgba(32, 227, 210, 0.3),
    rgba(58, 160, 255, 0.22)
  );
}

.avatar--blue {
  background: linear-gradient(
    135deg,
    rgba(58, 160, 255, 0.26),
    rgba(32, 227, 210, 0.14)
  );
}

@media (max-width: 900px) {
  .leadBlock__head {
    flex-direction: column;
  }
}
/* ================================
   Partners Page (Hero)
================================== */
.page--partners .main {
  padding-top: 0 !important;
}

.prtHero {
  padding: 54px 0 26px;
  background:
    radial-gradient(
      1000px 700px at 20% 20%,
      rgba(32, 227, 210, 0.18),
      transparent 58%
    ),
    radial-gradient(
      900px 600px at 85% 10%,
      rgba(58, 160, 255, 0.16),
      transparent 55%
    ),
    linear-gradient(135deg, rgba(3, 20, 39, 0.85), rgba(3, 20, 39, 0.55));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.prtHero__grid {
  display: grid;
  grid-template-columns: 1.55fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.prtHero__title {
  font-family: var(--font-display, "Manrope", system-ui);
  font-weight: 200;
  letter-spacing: -0.04em;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
  margin: 8px 0 12px;
  color: rgba(255, 255, 255, 0.97);
}

.prtHero__sub {
  max-width: 66ch;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 18px;
}

.prtHero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.prtHero__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.prtHero__card .glassCard {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(12px);
}

@media (max-width: 900px) {
  .prtHero__grid {
    grid-template-columns: 1fr;
  }
}
/* ================================
   FAQ Page
================================== */
.page--faq .main {
  padding-top: 0 !important;
}

.faqHero {
  padding: 54px 0 26px;
  background:
    radial-gradient(
      1000px 700px at 20% 20%,
      rgba(32, 227, 210, 0.18),
      transparent 58%
    ),
    radial-gradient(
      900px 600px at 85% 10%,
      rgba(58, 160, 255, 0.16),
      transparent 55%
    ),
    linear-gradient(135deg, rgba(3, 20, 39, 0.85), rgba(3, 20, 39, 0.55));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faqHero__grid {
  display: grid;
  grid-template-columns: 1.55fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.faqHero__title {
  font-family: var(--font-display, "Manrope", system-ui);
  font-weight: 200;
  letter-spacing: -0.04em;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
  margin: 8px 0 12px;
  color: rgba(255, 255, 255, 0.97);
}

.faqHero__sub {
  max-width: 66ch;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 18px;
}

.faqHero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.faqHero__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.faqHero__card .glassCard {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(12px);
}

.faqCats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faqCat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.faqCat:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 900px) {
  .faqHero__grid {
    grid-template-columns: 1fr;
  }
}


/* Footer legal mini-links */
.footer__legal{
  margin-top: 8px;
  font-size: 12px;
  opacity: .78;
}
.footer__legal a{
  color: rgba(255,255,255,.82);
  text-decoration: none;
}
.footer__legal a:hover{
  color: rgba(255,255,255,.95);
  text-decoration: underline;
}


/* ================================
   Legal / Utility Pages
================================== */
.page--legal .main{ padding-top: 0 !important; }

.legalHero{
  padding: 54px 0 26px;
  background:
    radial-gradient(1000px 700px at 20% 20%, rgba(32,227,210,.18), transparent 58%),
    radial-gradient(900px 600px at 85% 10%, rgba(58,160,255,.16), transparent 55%),
    linear-gradient(135deg, rgba(3,20,39,.85), rgba(3,20,39,.55));
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.legalHero__inner{
  max-width: 860px;
}

.legalHero__title{
  font-family: var(--font-display, "Manrope", system-ui);
  font-weight: 200;
  letter-spacing: -0.04em;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.08;
  margin: 8px 0 12px;
  color: rgba(255,255,255,.97);
}

.legalHero__sub{
  max-width: 66ch;
  font-weight: 300;
  color: rgba(255,255,255,.88);
  margin: 0 0 18px;
}

.legalBody .legalCard{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(10px);
}

.legalCard h2{
  font-family: var(--font-display, "Manrope", system-ui);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin: 18px 0 8px;
}

.page--404 .legalHero__inner{
  padding-bottom: 6px;
}
