/* =========================
   Site Frame (centered with border) - Dunk-ish
========================= */
body {
  margin: 0;
  background: #ffffff; /* outer background (kept) */
  overflow-x: clip; /* clip does not break position:sticky unlike hidden */
}

/* The “canvas” */
.site-frame {
  width: min(98vw, 2100px);
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 16px;
}

/* On smaller screens, remove outer frame margins */
@media (max-width: 900px) {
  .site-frame {
    margin: 0;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }
}

.hero,
#what-we-do,
#services,
#cta {
  padding-left: 0;
  padding-right: 0;
}

/* =========================
   Base / Reset
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: #111;
  /* IMPORTANT: removed background: #fff; so outer grey works */
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

section {
  padding: 80px clamp(20px, 4vw, 80px);
}

/* Optional: hide skip link unless focused */
a[href="#main-content"] {
  position: absolute;
  left: -999px;
  top: 0;
}
a[href="#main-content"]:focus {
  left: 16px;
  top: 16px;
  background: #fff;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  z-index: 1000;
}

/* =========================
   Header / Nav
========================= */
header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f3f3f3;
  z-index: 999;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6vw;
  gap: 24px;
}

nav strong {
  font-size: 18px;
  letter-spacing: 0.2px;
}

nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
}

nav a {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #222;
  opacity: 0.8;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1.5px;
  background: currentColor;
  transition: width 0.25s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 150px;
  width: auto;
  display: block;
  object-fit: contain;
}

@media (max-width: 850px) {
  .nav-logo img {
    height: 36px;
  }
}

/* Mobile nav wrap */
@media (max-width: 850px) {
  nav {
    flex-wrap: wrap;
    justify-content: center;
  }
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }
}

/* =========================
   HERO - CINEMATIC SYSTEM
========================= */
.hero {
  position: relative;
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #05070d;
  color: #fff;
  isolation: isolate;
}

.hero-bg,
.hero-grid,
.hero-orb {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg {
  background:
    radial-gradient(circle at 25% 35%, rgba(38, 92, 255, 0.22), transparent 34%),
    radial-gradient(circle at 78% 58%, rgba(0, 255, 179, 0.12), transparent 32%),
    linear-gradient(135deg, #05070d 0%, #070b14 45%, #030406 100%);
  z-index: -4;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
  z-index: -3;
}

.hero-orb {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(45px);
  opacity: 0.35;
  z-index: -2;
}

.hero-orb-1 {
  inset: 12% auto auto 8%;
  background: #1d5cff;
}

.hero-orb-2 {
  inset: auto 8% 8% auto;
  background: #00ffc3;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: none;
  width: 100%;
  margin: 0;
  padding-left: clamp(70px, 12vw, 180px);
  padding-right: clamp(70px, 8vw, 140px);
  display: grid;
  grid-template-columns: minmax(560px, 0.9fr) minmax(520px, 1.1fr);
  gap: 90px;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #05070d);
  pointer-events: none;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 5;
}

.hero-kicker {
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.62);
}

.hero-title {
  margin: 0;
  font-size: clamp(58px, 7vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.hero-title .line {
  overflow: hidden;
}

.hero-title .line span {
  display: inline-block;
  transform: translateY(110%);
}

.hero-subtext {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255,255,255,0.72);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.6;
}

.hero-buttons {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  transition: transform 0.25s ease, background 0.25s ease, border 0.25s ease;
}

.btn-primary {
  background: #fff;
  color: #05070d;
}

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(12px);
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
}

/* RIGHT VISUAL */
.hero-visual {
  position: relative;
  min-height: 620px;
  width: 100%;
  min-width: 520px;
  transform-style: preserve-3d;
  z-index: 3;
}

.system-card {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.42);
}

.main-panel {
  width: 420px;
  min-height: 330px;
  right: 60px;
  top: 120px;
  border-radius: 28px;
  padding: 24px;
}

.panel-top {
  display: flex;
  gap: 8px;
  margin-bottom: 34px;
}

.panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
}

.main-panel h3 {
  margin: 0 0 26px;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.75);
}

.metric-row p {
  margin: 0;
}

.metric-row strong {
  color: #fff;
}

.metric-bar {
  height: 10px;
  background: rgba(255,255,255,0.11);
  border-radius: 999px;
  margin: 14px 0 28px;
  overflow: hidden;
}

.metric-bar span {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #fff, #7bf7d3);
}

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

.mini-grid div {
  height: 82px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
}

.floating-card {
  border-radius: 20px;
  padding: 18px;
  width: 210px;
}

.floating-card p {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 1.4px;
  color: rgba(255,255,255,0.56);
}

.floating-card strong {
  font-size: 17px;
}

.card-a {
  right: 10px;
  left: auto;
  top: 30px;
}

.card-b {
  right: -20px;
  bottom: 80px;
}

.card-c {
  left: 20px;
  bottom: 145px;
}

@media (min-width: 1300px) {
  .hero-title {
    font-size: clamp(62px, 5.6vw, 100px);
  }

  .hero-container {
    padding-left: 9vw;
    padding-right: 9vw;
  }
}

.connection-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.45), transparent);
  transform-origin: left;
  opacity: 0;
}

.line-a {
  width: 210px;
  left: 180px;
  top: 145px;
  rotate: 18deg;
}

.line-b {
  width: 230px;
  left: 160px;
  bottom: 160px;
  rotate: -14deg;
}

@media (max-width: 950px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 110px 6vw 70px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-visual {
    min-width: 0;
    min-height: 480px;
  }

  .main-panel {
    left: 50%;
    right: auto;
    top: 80px;
    transform: translateX(-50%);
  }
}

@media (max-width: 650px) {
  .hero-container {
    padding-top: 100px;
  }

  .hero-title {
    font-size: clamp(48px, 15vw, 72px);
  }

  .hero-visual {
    scale: 0.85;
    transform-origin: top center;
  }
}

.system-card {
  transform: translateZ(0);
}

.card-a { transform: translateZ(40px); }
.card-b { transform: translateZ(60px); }
.card-c { transform: translateZ(30px); }
.main-panel { transform: translateZ(80px); }

@media (min-width: 1400px) {
  .hero-container {
    max-width: 1560px;
    grid-template-columns: 1fr 1fr;
    gap: 120px;
    padding-top: 70px;
  }

  .hero-title {
    font-size: clamp(78px, 6.2vw, 118px);
  }

  .hero-subtext {
    font-size: 20px;
    max-width: 620px;
  }

  .hero-visual {
    scale: 1.12;
    transform-origin: center;
  }
}

.hero-title .line {
  overflow: hidden;
}

.hero-title .line span {
  display: inline-block;
  transform: translateY(110%);
}

.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,255,200,0.15), transparent 70%);
  pointer-events: none;
  border-radius: 50%;
  mix-blend-mode: screen;
  z-index: 1;
}

.hero-loader {
  position: fixed;
  top: 0;
  left: 50%;
  width: min(98vw, 2100px);
  height: 100vh;
  transform: translateX(-50%);
  background: #05070d;
  z-index: 9999;

  display: grid;
  place-items: center;

  border-left: 1px solid #e9e9e9;
  border-right: 1px solid #e9e9e9;
}

@media (max-width: 900px) {
  .hero-loader {
    width: 100vw;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px; /* tighter spacing */
  transform: translateY(-10px); /* slight visual lift */
}

.loader-img {
  width: clamp(100px, 10vw, 170px);
  height: auto;
  opacity: 0;
  transform: translateX(6px) scale(0.92);
  filter: drop-shadow(0 10px 30px rgba(255,255,255,0.12));
}

.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,255,200,0.16), transparent 70%);
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 3;
}

.noise-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.055;
  pointer-events: none;
  z-index: 4;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 3px 3px;
}

/* =========================
   What We Do - Cinematic Scroll Story
========================= */
#what-we-do {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(14,165,233,0.14), transparent 34%),
    radial-gradient(circle at 80% 70%, rgba(22,163,74,0.12), transparent 36%),
    #05070d;
  color: #f5f5f5;
  padding: 0 !important;
  margin: 0;
}

/* removes random white gap between hero and what-we-do */
.hero {
  margin-bottom: 0;
}

.whatwe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  padding: 120px 6vw 110px;
}

.what-we-do-left {
  max-width: 600px;
}

#what-we-do .what-we-do-left h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(42px, 5.4vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.065em;
  max-width: 14.5ch;
  text-transform: uppercase;
}

.what-we-do-right {
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centering */
  gap: 24px;
  max-width: 600px;
}

#what-we-do .what-we-do-right p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  padding: 30px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(16px);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.65;
  box-shadow: 0 24px 80px rgba(0,0,0,0.24);
}

/* =========================
   Pillars - Restored Styling
========================= */
#what-we-do .pillars {
  padding: 40px 6vw 110px;
  border-top: 1px solid rgba(255,255,255,0.12);
  background:
    radial-gradient(circle at 50% 0%, rgba(14,165,233,0.12), transparent 35%),
    transparent;
  padding-top: 20px;
}

#what-we-do .pillars h2 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  padding: 9px 15px;
  border-radius: 999px;
  border: 1px solid rgba(125,211,252,0.28);
  background: rgba(14,165,233,0.08);
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  box-shadow: 0 0 28px rgba(14,165,233,0.08);
}

#what-we-do .pillars h2::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #7dd3fc;
  box-shadow: 0 0 16px rgba(125,211,252,0.9);
}

#what-we-do .pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

#what-we-do .pillars-grid article {
  position: relative;
  min-height: 300px;
  padding: 34px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.13);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.085), rgba(255,255,255,0.035));
  box-shadow: 0 28px 90px rgba(0,0,0,0.24);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

#what-we-do .pillars-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(14,165,233,0.14), transparent);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

#what-we-do .pillars-grid article::after {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #0ea5e9, #16a34a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

#what-we-do .pillars-grid article:hover {
  transform: translateY(-10px);
  border-color: rgba(14,165,233,0.35);
  box-shadow:
    0 36px 110px rgba(0,0,0,0.34),
    0 0 60px rgba(14,165,233,0.12);
}

#what-we-do .pillars-grid article:hover::before {
  transform: translateX(120%);
}

#what-we-do .pillars-grid article:hover::after {
  transform: scaleX(1);
}

#what-we-do .pillars-grid .number {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(125,211,252,0.35);
  background: rgba(14,165,233,0.08);
  color: #7dd3fc;
  font-weight: 900;
}

#what-we-do .pillars-grid h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

#what-we-do .pillars-grid p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  font-size: 16px;
}

/* =========================
   The System
========================= */

.system-cycle-section {
  height: 100vh;
  background:
    radial-gradient(circle at 50% 60%, rgba(14,165,233,0.18), transparent 35%),
    radial-gradient(circle at 70% 35%, rgba(22,163,74,0.14), transparent 34%),
    #05070d;
  color: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.system-cycle-inner {
  text-align: center;
}

.system-cycle-word {
  margin: 20px 0;
  font-size: clamp(64px, 12vw, 180px);
  line-height: 0.85;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  font-weight: 950;
}

.system-cycle-sub {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(255,255,255,0.68);
  font-size: 18px;
}

.system-progress {
  position: relative;
  width: min(420px, 70vw);
  height: 3px;
  background: rgba(255,255,255,0.12);
  margin: 34px auto 0;
  border-radius: 999px;
}

.system-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0ea5e9, #16a34a);
}

.system-dot {
  position: absolute;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #1f2937;
  border: 1px solid rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: background 0.25s ease, box-shadow 0.25s ease, scale 0.25s ease;
}

.system-dot:nth-child(2) { left: 0%; }
.system-dot:nth-child(3) { left: 20%; }
.system-dot:nth-child(4) { left: 40%; }
.system-dot:nth-child(5) { left: 60%; }
.system-dot:nth-child(6) { left: 80%; }
.system-dot:nth-child(7) { left: 100%; }

.system-dot.active {
  background: #7dd3fc;
  box-shadow: 0 0 18px rgba(125,211,252,0.8);
  scale: 1.25;
}

/* =========================
   Before / After Cinematic
========================= */
.before-after-section {
  position: relative;
  min-height: auto;
  padding: 120px 6vw;
  background: #05070d;
  color: #fff;
  overflow: hidden;
}

.ba-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 40%, rgba(239,68,68,0.12), transparent 30%),
    radial-gradient(circle at 80% 50%, rgba(22,163,74,0.16), transparent 34%),
    linear-gradient(135deg, #05070d, #070b14);
  pointer-events: none;
}

.ba-inner {
  position: relative;
  z-index: 2;
  max-width: 1350px;
  margin: 0 auto;
}

.ba-header {
  max-width: 900px;
  margin-bottom: 70px;
}

.ba-header h2 {
  margin: 18px 0 0;
  font-size: clamp(42px, 5.8vw, 92px);
  line-height: 0.9;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.ba-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  gap: 26px;
  align-items: stretch;
}

.ba-panel {
  position: relative;
  min-height: 520px;
  padding: 38px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 34px 110px rgba(0,0,0,0.35);
}

.ba-before {
  background:
    radial-gradient(circle at 20% 10%, rgba(239,68,68,0.18), transparent 38%),
    rgba(255,255,255,0.045);
}

.ba-after {
  background:
    radial-gradient(circle at 80% 10%, rgba(22,163,74,0.20), transparent 38%),
    rgba(255,255,255,0.07);
}

.ba-label {
  display: inline-flex;
  margin-bottom: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
}

.ba-panel h3 {
  margin: 0 0 34px;
  font-size: clamp(54px, 6vw, 110px);
  line-height: 0.85;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.ba-before h3 {
  color: rgba(255,255,255,0.48);
}

.ba-after h3 {
  color: #fff;
  text-shadow: 0 0 36px rgba(22,163,74,0.22);
}

.ba-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.ba-panel li {
  padding: 16px 18px;
  border-radius: 18px;
  font-weight: 800;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.ba-before li {
  color: rgba(255,255,255,0.55);
}

.ba-after li {
  color: rgba(255,255,255,0.9);
}

.ba-divider {
  display: grid;
  place-items: center;
}

.ba-divider span {
  width: 3px;
  height: 100%;
  min-height: 520px;
  border-radius: 999px;
  background: linear-gradient(to bottom, #ef4444, #0ea5e9, #16a34a);
  box-shadow:
    0 0 24px rgba(14,165,233,0.45),
    0 0 70px rgba(22,163,74,0.22);
}

@media (max-width: 950px) {
  .ba-stage {
    grid-template-columns: 1fr;
  }

  .ba-divider {
    display: none;
  }

  .ba-panel {
    min-height: auto;
  }
}

/* =========================
   Gallery
========================= */

.gallery-coming {
  padding: 0 0 120px;
  background: #fff;
  color: #111;
  text-align: center;
  overflow: hidden;
}

.gallery-marquee {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 18px 0;
  margin-bottom: 90px;
}

.gallery-track {
  display: flex;
  width: max-content;
  gap: 40px;
  animation: galleryMarqueeScroll 18s linear infinite;
}

.gallery-track span {
  display: inline-block;
  white-space: nowrap;
  font-size: clamp(46px, 6vw, 92px);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #111;
}

@keyframes galleryMarqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.gallery-inner {
  padding: 0 6vw;
}

.gallery-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 24px 70px rgba(0,0,0,0.12);
}

/* =========================
   CTA + Footer
========================= */
#cta {
  padding-top: 40px;
  padding-bottom: 100px;
  text-align: center;
  border-top: 1px solid #eee;
}

#cta a {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.2px;

  background: #16a34a;
  border: 1px solid #16a34a;
  color: #fff;

  transition: all 0.2s ease;
}

#cta a:hover {
  background: #15803d;
  border-color: #15803d;
}

footer {
  padding: 28px 6vw;
  border-top: 1px solid #eee;
  color: #666;
  font-size: 14px;
}

/* =========================
   Gradient Color Texts
========================= */

.gradient-text {
  background: linear-gradient(90deg, #16a34a, #0ea5e9, #16a34a);
  background-size: 300% 300%;
  animation: greenBlueTextShift 6s ease infinite;

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes greenBlueTextShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* =========================
   Footer
========================= */

.footer {
  background: #383838;
  color: #f5f5f5;
  padding: 80px 6vw 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.footer-brand p {
  margin: 0 0 40px;
  color: rgba(255,255,255,0.7);
}

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

.footer h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.6);
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-bottom: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 900px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
}
/* =========================
   About Page - Proper Founder Version
========================= */

.about-page-hero {
  position: relative;
  padding: 120px 6vw 90px;

  background:
    radial-gradient(circle at 20% 20%, rgba(14,165,233,0.14), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(22,163,74,0.12), transparent 40%),
    linear-gradient(135deg, #0b0f1a 0%, #111827 100%);

  color: #f5f5f5;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 8px 14px;
  margin-bottom: 20px;

  border-radius: 999px;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);

  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;

  backdrop-filter: blur(6px);
  z-index: 1;
}

.about-page-hero-inner {
  max-width: 1400px;
}

.hero-animate {
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeUp 1s ease forwards;
}

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-page-title {
  margin: 0 0 24px;
  max-width: 16ch;
  font-size: clamp(52px, 6.2vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  font-weight: 900;
  color: #ffffff;
  max-width: 100%;
  width: 100%;
  white-space: normal;
  word-break: break-word;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s ease forwards;
  animation-delay: 0.2s;
}

.about-page-title--full {
  max-width: 18ch; /* wider than contact */
}

.about-page-title strong {
  font-weight: 900;
}

.about-page-sub {
  margin: 0;
  max-width: 58ch;
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s ease forwards;
  animation-delay: 0.4s;
}

.about-page-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 999px;

  background: radial-gradient(circle, rgba(14,165,233,0.25), transparent 70%);
  filter: blur(60px);

  top: -120px;
  right: 10%;
  z-index: 0;
  animation: glowMove 8s ease-in-out infinite alternate;
}

@keyframes glowMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-40px, 40px);
  }
}

.about-page-title span,
.about-page-title strong {
  transition: transform 0.3s ease;
}

.about-page-title:hover span,
.about-page-title:hover strong {
  transform: translateY(-2px);
}

.about-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
}

.about-page-hero .section-label {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 8px 14px;
  border-radius: 999px;

  background: rgba(14,165,233,0.12);
  border: 1px solid rgba(14,165,233,0.25);

  color: #7dd3fc;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.about-page-hero .social-link {
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.06);
}

.about-page-hero .social-link svg {
  color: rgba(255,255,255,0.85);
}

.about-page-hero .social-link:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.45);
}

@media (max-width: 700px) {
  .about-page-title {
    max-width: 100%;
    font-size: clamp(42px, 12vw, 68px);
    letter-spacing: -0.055em;
  }
}

/* Intro */

.about-intro-section {
  position: relative;
  padding: 130px 6vw;
  color: #fff;
  text-align: center;

  background:
    radial-gradient(circle at 20% 30%, rgba(14,165,233,0.18), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(22,163,74,0.14), transparent 40%),
    linear-gradient(135deg, #050505 0%, #0b0f1a 100%);
}

.about-intro-section::after {
  content: "";
  position: absolute;
  inset: 0;

  background: url('/images/paper-texture.jpg');
  opacity: 0.03;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.about-manifesto {
  max-width: 1100px;
  margin: 0 auto;
}

.about-manifesto h2 {
  margin: 0 auto 54px;
  max-width: 1050px;
  font-size: clamp(48px, 6.5vw, 104px);
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-transform: uppercase;
  font-weight: 950;
}

.about-manifesto h2 span {
  color: #16a34a;
}

.about-manifesto p {
  max-width: 860px;
  margin: 0 auto 28px;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.6;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
}

.about-manifesto p strong {
  color: #0ea5e9;
}

.manifesto-btn {
  margin-top: 28px;
}

@media (max-width: 700px) {
  .about-intro-section {
    padding: 90px 6vw;
  }

  .about-manifesto h2 {
    font-size: clamp(42px, 13vw, 66px);
  }

  .about-manifesto p {
    font-size: 16px;
    font-weight: 600;
  }
}

/* Founders */
.founders-section {
  padding: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(14,165,233,0.16), transparent 35%),
    radial-gradient(circle at 85% 80%, rgba(22,163,74,0.12), transparent 35%),
    #050814;
  color: #f5f5f5;
}

.founders-section .section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 8px 14px;
  border-radius: 999px;

  background: rgba(14,165,233,0.12);
  border: 1px solid rgba(14,165,233,0.25);

  color: #7dd3fc;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.founders-inner {
  padding: 60px 6vw 80px;
}

.founders-heading {
  margin-bottom: 30px;
}

.founders-heading h2 {
  font-size: clamp(42px, 5vw, 82px);
  line-height: 0.92;
  letter-spacing: -0.07em;
  font-weight: 950;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.founder-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  box-shadow: 0 30px 90px rgba(0,0,0,0.28);
}

.founder-image-wrap {
  aspect-ratio: 4 / 4.2;
  overflow: hidden;
  background: #1a1a1a;
}

.founder-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-card:nth-child(2) .founder-image-wrap img {
  transform: scale(2.2) translateY(-10%) translateX(-2%);
}

.founder-content {
  padding: 30px;
}

.founder-role {
  margin: 0 0 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.65);
}

.founder-content h3 {
  font-size: clamp(42px, 4vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
  font-weight: 950;
}

.founder-content p {
  margin: 0 0 14px;
  color: rgba(245,245,245,0.82);
}

.founder-tags {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.founder-tags li {
  display: inline-flex;
  align-items: center;

  padding: 8px 14px;
  border-radius: 999px; /* makes it pill */

  font-size: 13px;
  font-weight: 700;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);

  color: rgba(255,255,255,0.85);

  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}

.founder-tags li:hover {
  background: rgba(14,165,233,0.12);
  border-color: rgba(14,165,233,0.35);
  color: #e0f2fe;
}

/* Story */
.about-story-section {
  padding: 120px 6vw;
  background: #f8fbff;
  padding-bottom: 40px;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.about-story-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-story-left:hover .story-circle {
  transform: scale(1.03);
  transition: 0.3s ease;
}

.story-circle {
  width: clamp(260px, 28vw, 420px);
  height: clamp(260px, 28vw, 420px);
  border-radius: 50%;
  box-shadow: 0 0 120px rgba(250, 204, 21, 0.35);
  background: radial-gradient(circle, #facc15, #f59e0b);
  filter: blur(0px);
}

.story-heading {
  position: absolute;

  font-size: clamp(38px, 4.5vw, 70px);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 0.9;

  text-transform: uppercase;
  color: #111;

  text-align: center;
}

.about-story-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding-left: 28px;
}

.about-story-right strong {
  font-weight: 800;
  background: linear-gradient(90deg, #facc15, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-story-right::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 3px;
  height: 90%;
  border-radius: 3px;
  background: linear-gradient(#facc15, #f59e0b);
}

.about-story-right p:not(:last-child) {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.about-story-right p {
  margin: 0;
  font-size: 19px;
  line-height: 1.75;
  font-weight: 500;
  color: #111;
  max-width: 60ch;
  transition: transform 0.2s ease, color 0.2s ease;
}

.about-story-right p:hover {
  transform: translateX(4px);
  color: #000;
}

@media (max-width: 900px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-story-right {
    align-items: center;
  }
}

/* Photo strip */
.about-photo-strip-section {
  padding: 0;
  background: #fff;
}

.about-photo-strip {
  padding: 60px 6vw 80px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.about-photo-card {
  margin: 0;
  border: 1px solid #e9e9e9;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.about-photo-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 420px;
  object-fit: cover;
}

.about-photo-card.large img {
  min-height: 420px;
}

.about-photo-card figcaption {
  padding: 14px 16px;
  font-size: 14px;
  color: #555;
  border-top: 1px solid #eee;
}

/* Beliefs */
.about-beliefs-section {
  padding: 120px 6vw;
  background: #f8fbff;
  padding-top: 40px;
}

.about-beliefs-section .section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 8px 14px;
  margin-bottom: 18px;

  border-radius: 999px;

  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.25);

  color: #b45309;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.about-beliefs-section .section-label::after {
  content: "";
  width: 40px;
  height: 1px;
  background: rgba(0,0,0,0.2);
}

.about-beliefs-heading h2 {
  margin: 0;
  font-size: clamp(38px, 4.5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 950;
  text-transform: uppercase;
}

.about-beliefs-heading {
  margin-bottom: 60px;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.quote-card {
  position: relative;
  padding: 30px 28px;
  border-radius: 26px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 22px 70px rgba(0,0,0,0.055);
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quote-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.09);
}

.quote-tag {
  display: inline-flex;
  padding: 7px 13px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(250,204,21,0.12);
  border: 1px solid rgba(245,158,11,0.25);
  color: #b45309;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.quote-card blockquote {
  margin: 0 0 18px;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: #111827;
}

.quote-card cite {
  display: block;
  margin-bottom: 18px;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(17,24,39,0.45);
}

.quote-note {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.07);
  font-size: 14px;
  line-height: 1.65;
  color: #374151;
}

@media (max-width: 1100px) {
  .quotes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* CTA copy */
.about-cta-copy {
  max-width: 840px;
  margin: 0 auto 22px;
}

.about-cta-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1000px) {
  .about-intro-grid,
  .about-story-grid,
  .founders-grid,
  .about-beliefs-grid,
  .about-photo-strip {
    grid-template-columns: 1fr;
  }

  .about-photo-card.large img,
  .about-photo-card img {
    min-height: 280px;
    max-height: 380px;
  }
}

@media (max-width: 700px) {
  .about-page-hero {
    padding: 90px 6vw 70px;
  }

  .founder-content,
  .about-photo-strip,
  .founders-inner,
  .about-story-section,
  .about-beliefs-section {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}
/* =========================
   Mission Statement
========================= */
.mission-statement {
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 3px solid #16a34a;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0 16px 16px 0;
  max-width: 60ch;
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s ease forwards;
  animation-delay: 0.6s;
}

.mission-text {
  margin: 0;
  font-size: 17px;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
}

.mission-text strong {
  color: #ffffff;
}

/* =========================
   Social Links (Hero)
========================= */
.about-socials {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 1s ease forwards;
  animation-delay: 0.8s;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid #dcdcdc;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #222;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-link:hover {
  background: #f4f4f4;
  border-color: #bbb;
  transform: translateY(-2px);
}

/* =========================
   Founder Socials
========================= */
.founder-socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.founder-socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.7);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.founder-socials a:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  transform: translateY(-2px);
}

/* =========================
   Footer Socials
========================= */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  transform: translateY(-2px);
}

/* =========================
   Founder Card Hover
========================= */
.founder-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

/* =========================
   Scroll Reveal Animation
========================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   Mobile Nav (Hamburger)
========================= */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #222;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 850px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    width: 100%;
    padding: 12px 0 16px;
    border-top: 1px solid #eee;
  }

  .nav-menu--open {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0 6vw;
  }

  .nav-menu ul li a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid #f3f3f3;
  }
}

/* =========================
   CTA Section - Background Image
========================= */
#cta.cta-bg {
  position: relative;
  background-image: url('cta-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 120px clamp(20px, 6vw, 100px);
  text-align: center;
  border-top: none;
  overflow: hidden;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 0;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.cta-heading {
  font-size: clamp(28px, 3.8vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 36px;
}

/* Cycling word */
.cta-cycling-wrap {
  display: inline-block;
  position: relative;
}

.cta-cycling {
  display: inline-block;
  background: #16a34a;
  color: #fff;
  padding: 2px 16px 4px;
  border-radius: 6px;
  font-style: italic;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cta-cycling--out {
  opacity: 0;
  transform: translateY(-8px);
}

.cta-cycling--in {
  animation: cycleIn 0.35s ease forwards;
}

@keyframes cycleIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cta-btn {
  font-size: 16px;
  padding: 16px 36px;
}

/* section-label light override for dark bg */
#cta.cta-bg .section-label--light {
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  display: block;
}

/* =========================
   Quote Cards (Our Values)
========================= */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.quote-card {
  border: 1px solid #e9e9e9;
  border-radius: 18px;
  padding: 28px 22px 24px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.quote-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #16a34a;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  width: fit-content;
}

.quote-card blockquote {
  margin: 0;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #111;
  font-style: italic;
}

.quote-card cite {
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quote-note {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  border-top: 1px solid #f0f0f0;
  padding-top: 14px;
}

@media (max-width: 1100px) {
  .quotes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* =========================
   Services Summary (Homepage)
========================= */
.services-summary-inner {
  padding: 60px 6vw 80px;
}

.services-summary-header {
  max-width: 700px;
  margin-bottom: 40px;
}

.services-summary-header h2 {
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 14px;
  line-height: 1.05;
}

.services-summary-sub {
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  max-width: 58ch;
}

.services-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.service-summary-card {
  border: 1px solid #e9e9e9;
  border-radius: 20px;
  padding: 44px 36px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-summary-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.service-summary-card--featured {
  background: #0f0f10;
  border-color: #0f0f10;
  color: #ffffff;
}

.service-summary-card--featured p {
  color: #ffffff;
}

.service-summary-number {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #aaa;
  text-transform: uppercase;
}

.service-summary-card--featured .service-summary-number {
  color: rgba(255,255,255,0.4);
}

.service-summary-card h3 {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.1;
}

.service-summary-card p {
  margin: 0;
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}

.service-summary-card--featured p {
  color: #ffffff !important;
}

.service-summary-tag {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid #e0e0e0;
  color: #666;
  width: fit-content;
}

.service-summary-tag--green {
  background: #16a34a;
  border-color: #16a34a;
  color: #fff;
}

.services-summary-cta {
  text-align: center;
}

@media (max-width: 700px) {
  .services-summary-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Hero Trust Bar
========================= */
.hero-trust-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #666;
  letter-spacing: 0.3px;
}

.trust-item svg {
  color: #16a34a;
  flex-shrink: 0;
}

.trust-divider {
  color: #ddd;
  font-size: 14px;
}

@media (max-width: 600px) {
  .trust-divider {
    display: none;
  }
  .hero-trust-bar {
    gap: 8px 16px;
  }
}

/* =========================
   Contact Page
========================= */

.contact-page-hero {
  position: relative;
  padding: 120px 6vw 100px;
  background:
    linear-gradient(rgba(5,8,20,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5,8,20,0.035) 1px, transparent 1px),
    radial-gradient(circle at 15% 85%, rgba(22,163,74,0.12), transparent 35%),
    radial-gradient(circle at 85% 15%, rgba(14,165,233,0.12), transparent 35%),
    #f8fbff;
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
  border-bottom: 1px solid #e6e6e6;
}

.contact-page-hero .section-label {
  display: inline-flex;
  margin: 0 0 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.22);
  color: #0284c7;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.contact-page-hero-inner {
  max-width: 1100px;
}

.contact-page-title {
  margin: 0 0 24px;
  max-width: 9.5ch;
  font-size: clamp(58px, 7.4vw, 122px);
  line-height: 0.86;
  letter-spacing: -0.09em;
  text-transform: uppercase;
  font-weight: 950;
  color: #07111f;
}

.contact-page-title strong {
  font-weight: 950;
}

.contact-page-sub {
  margin: 0;
  max-width: 72ch;
  color: #444;
  font-size: 16px;
  line-height: 1.7;
}

.contact-info-section {
  padding: 0;
  background: #fff;
}

.contact-info-grid {
  padding: 55px 6vw 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-info-card {
  border: 1px solid #e6e6e6;
  border-radius: 20px;
  padding: 24px 22px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

.contact-info-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: #666;
}

.contact-info-card h3 {
  margin: 0 0 10px;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-weight: 800;
}

.contact-info-card p {
  margin: 0 0 14px;
  color: #555;
}

.contact-info-card a,
.contact-info-card span {
  font-weight: 600;
  color: #111;
}

.contact-form-section {
  padding: 30px 6vw 90px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}

.contact-form-copy h2,
.contact-faq-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-weight: 800;
}

.contact-form-copy > p {
  margin: 0 0 24px;
  color: #444;
  max-width: 60ch;
}

.contact-process {
  display: grid;
  gap: 16px;
}

.contact-process-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 16px;
  background: #fff;
}

.contact-process-step .number {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid #ddd;
  font-weight: 800;
}

.contact-process-step h4 {
  margin: 2px 0 6px;
  font-size: 16px;
}

.contact-process-step p {
  margin: 0;
  color: #555;
  font-size: 14px;
}

.contact-form-wrap {
  border: 1px solid #e6e6e6;
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff, #f9fbff);
  padding: 28px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-field {
  display: grid;
  gap: 8px;
}

.contact-field label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #222;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid #dcdcdc;
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: #111;
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: #16a34a;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.08);
}

.contact-field textarea {
  resize: vertical;
  min-height: 170px;
}

.contact-submit-btn {
  justify-self: start;
}

.form-status {
  margin: 0;
  min-height: 28px;
  font-size: 14px;
  color: #555;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-status:not(:empty) {
  opacity: 1;
  transform: translateY(0);
}

.status-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}

.form-status--success {
  color: #15803d;
  font-weight: 600;
}

.form-status--success .status-icon {
  background: #dcfce7;
  color: #15803d;
}

.form-status--error {
  color: #b91c1c;
  font-weight: 600;
}

.form-status--error .status-icon {
  background: #fee2e2;
  color: #b91c1c;
}

.contact-faq-section {
  padding: 0 6vw 100px;
}

#cta.cta-bg {
  margin-top: 0;
}

.contact-faq-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-faq-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.contact-faq-card {
  border: 1px solid #e9e9e9;
  border-radius: 18px;
  padding: 24px 20px;
  background: #fff;
}

.contact-faq-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-faq-card p {
  margin: 0;
  color: #555;
}

@media (max-width: 1000px) {
  .contact-info-grid,
  .contact-form-grid,
  .contact-faq-grid,
  .contact-field-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .contact-page-hero {
    padding: 90px 6vw 60px;
  }

  .contact-form-wrap {
    padding: 20px;
    border-radius: 20px;
  }
}

.contact-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.contact-hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero-visual::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(14,165,233,0.22), transparent 65%);
  filter: blur(20px);
}

.contact-hero-visual::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(22,163,74,0.15), transparent 65%);
  z-index: -1;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.contact-glass-card {
  animation: floatCard 6s ease-in-out infinite;
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: 36px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.85), rgba(245,251,255,0.72));
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow:
    0 35px 100px rgba(14,165,233,0.16),
    0 20px 60px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-glass-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 45px 120px rgba(14,165,233,0.2),
    0 24px 70px rgba(0,0,0,0.1);
}

.contact-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 34px;
}

@keyframes pulseLive {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.contact-card-top span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(22,163,74,0.1);
  color: #16a34a;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.4px;
  animation: pulseLive 2s infinite;
}

.contact-glass-card h3 {
  margin: 0 0 26px;
  font-size: clamp(40px, 3.8vw, 58px);
  line-height: 0.92;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  color: #07111f;
}

.card-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 26px;
}

.card-steps div {
  min-height: 96px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
  font-weight: 900;
}

.card-steps span {
  display: block;
  margin-bottom: 12px;
  color: #0284c7;
  font-weight: 950;
  letter-spacing: 0.8px;
}

.card-bar {
  height: 10px;
  background: rgba(0,0,0,0.08);
  border-radius: 999px;
  overflow: hidden;
}

.card-bar span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0ea5e9, #16a34a);
}

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

@media (max-width: 600px) {
  .contact-page-title {
    font-size: clamp(42px, 12vw, 64px);
    line-height: 0.95;
    letter-spacing: -0.05em;
  }
}

@media (max-width: 950px) {
  .contact-hero-layout {
    gap: 50px;
  }
}

@media (max-width: 950px) {
  .contact-hero-visual {
    justify-content: flex-start;
    transform: none;
  }

  .contact-glass-card {
    max-width: 100%;
  }
}

@media (max-width: 950px) {
  .contact-glass-card {
    animation: fadeUp 0.8s ease forwards;
  }
}


/* =========================
   HF PARTNERS SERVICES — DARK BLUE MEGA VERSION
========================= */

.svc-dark-hero,
.svc-dark-section,
.svc-blue-section,
.svc-service-menu,
.svc-engine-dark,
.svc-system-dark,
.svc-target-dark,
.svc-workflow-dark,
.svc-trust-dark,
.svc-final-dark,
.svc-visual-split {
  background: #050814;
  color: #fff;
}

.svc-dark-hero {
  position: relative;
  padding: 120px 6vw;
  overflow: hidden;
  min-height: 780px;
  display: grid;
  align-items: center;
}

.svc-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 74%);
  animation: gridDrift 18s linear infinite;
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to { background-position: 88px 88px; }
}

.svc-scanline {
  position: absolute;
  left: 0;
  right: 0;
  top: -20%;
  height: 160px;
  background: linear-gradient(transparent, rgba(14,165,233,0.12), transparent);
  animation: scanMove 7s ease-in-out infinite;
  z-index: 1;
}

@keyframes scanMove {
  0% { transform: translateY(-20vh); opacity: 0; }
  20% { opacity: 1; }
  70% { opacity: 1; }
  100% { transform: translateY(120vh); opacity: 0; }
}

.svc-noise {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(14,165,233,0.12), transparent 26%),
    radial-gradient(circle at 80% 40%, rgba(22,163,74,0.10), transparent 25%);
  opacity: 0.9;
}

.svc-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  animation: svcFloatMega 9s ease-in-out infinite;
}

.svc-glow-blue {
  width: 520px;
  height: 520px;
  background: rgba(14, 165, 233, 0.40);
  top: -160px;
  right: 8%;
}

.svc-glow-green {
  width: 420px;
  height: 420px;
  background: rgba(22, 163, 74, 0.24);
  bottom: -140px;
  left: 5%;
  animation-delay: 1.7s;
}

@keyframes svcFloatMega {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-24px) scale(1.07); }
}

.svc-hero-layout {
  position: relative;
  z-index: 2;
  max-width: 1450px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
}

.svc-pill-label {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(14, 165, 233, 0.10);
  border: 1px solid rgba(14, 165, 233, 0.28);
  color: #7dd3fc;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(14,165,233,0.12);
}

.svc-hero-copy h1 {
  margin: 0 0 26px;
  max-width: 11ch;
  font-size: clamp(58px, 7.4vw, 122px);
  line-height: 0.86;
  letter-spacing: -0.09em;
  text-transform: uppercase;
  font-weight: 950;
  color: #fff;
  text-shadow:
    0 0 18px rgba(14,165,233,0.18),
    0 0 60px rgba(14,165,233,0.22);
  animation: svcHeroRise 0.9s ease both;
}

@keyframes svcHeroRise {
  from { opacity: 0; transform: translateY(28px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.svc-hero-copy p:not(.svc-pill-label) {
  max-width: 58ch;
  margin: 0;
  color: rgba(255,255,255,0.76);
  font-size: 17px;
  line-height: 1.7;
}

.svc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.svc-primary-btn {
  background: linear-gradient(135deg, #0ea5e9, #16a34a);
  border: 0;
  box-shadow: 0 0 30px rgba(14,165,233,0.25);
}

.svc-primary-btn:hover {
  background: linear-gradient(135deg, #0284c7, #15803d);
  box-shadow: 0 0 45px rgba(14,165,233,0.35);
}

.svc-secondary-btn {
  color: #fff;
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}

.svc-secondary-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.28);
}

.svc-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.svc-hero-tags span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.svc-media-stack {
  position: relative;
  min-height: 650px;
}

.svc-photo-card {
  position: absolute;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 30px 90px rgba(0,0,0,0.45);
}

.svc-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-photo-main {
  top: 0;
  right: 0;
  width: 78%;
  height: 370px;
  animation: imageFloat 7s ease-in-out infinite;
}

@keyframes imageFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

.svc-photo-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(5,8,20,0.72);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
}

.svc-photo-overlay span {
  display: block;
  font-size: 11px;
  letter-spacing: 1.4px;
  color: rgba(255,255,255,0.56);
  margin-bottom: 6px;
}

.svc-photo-overlay strong {
  color: #7dd3fc;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.svc-command-centre {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72%;
  padding: clamp(26px, 3vw, 38px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 0%, rgba(14,165,233,0.34), transparent 34%),
    radial-gradient(circle at 10% 100%, rgba(22,163,74,0.18), transparent 30%),
    rgba(255,255,255,0.075);
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow:
    0 36px 110px rgba(0,0,0,0.48),
    0 0 85px rgba(14,165,233,0.22);
  backdrop-filter: blur(18px);
  overflow: hidden;
  animation: svcPanelPulse 5s ease-in-out infinite;
}

@keyframes svcPanelPulse {
  0%, 100% { box-shadow: 0 36px 110px rgba(0,0,0,0.48), 0 0 70px rgba(14,165,233,0.18); }
  50% { box-shadow: 0 36px 110px rgba(0,0,0,0.48), 0 0 110px rgba(14,165,233,0.32); }
}

.svc-card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 1.4px;
}

.svc-card-header strong {
  color: #7dd3fc;
  text-shadow: 0 0 18px rgba(14,165,233,0.95);
  animation: svcBlink 1.5s ease-in-out infinite;
}

@keyframes svcBlink {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.svc-radar {
  position: relative;
  width: 118px;
  height: 118px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
}

.svc-radar-ring,
.svc-radar-ring-two {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(14,165,233,0.35);
  animation: svcRadar 2.8s ease-out infinite;
}

.svc-radar-ring-two {
  animation-delay: 1.2s;
}

.svc-radar-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #0ea5e9;
  box-shadow: 0 0 28px rgba(14,165,233,0.9);
}

@keyframes svcRadar {
  from { transform: scale(0.35); opacity: 1; }
  to { transform: scale(1.15); opacity: 0; }
}

.svc-command-centre h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 3.5vw, 58px);
  line-height: 0.92;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.svc-command-centre > p {
  margin: 0 0 22px;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}

.svc-command-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.svc-command-grid div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
}

.svc-command-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #7dd3fc;
  font-weight: 950;
}

.svc-command-grid span {
  font-weight: 850;
}

.svc-pulse-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  overflow: hidden;
  margin-top: 22px;
}

.svc-pulse-bar span {
  display: block;
  height: 100%;
  width: 72%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0ea5e9, #16a34a);
  animation: svcProgress 3.2s ease-in-out infinite;
}

@keyframes svcProgress {
  0%, 100% { width: 56%; }
  50% { width: 90%; }
}

.svc-dark-section,
.svc-blue-section,
.svc-service-menu,
.svc-engine-dark,
.svc-system-dark,
.svc-target-dark,
.svc-workflow-dark,
.svc-trust-dark,
.svc-final-dark,
.svc-visual-split {
  position: relative;
  padding: 100px 6vw;
}

.svc-dark-section {
  background: #070b18;
}

.svc-blue-section {
  background:
    radial-gradient(circle at 20% 10%, rgba(14,165,233,0.16), transparent 26%),
    #050814;
}

.svc-service-menu {
  background: #070b18;
}

.svc-engine-dark {
  background: #050814;
}

.svc-system-dark {
  background:
    radial-gradient(circle at 84% 20%, rgba(14,165,233,0.16), transparent 28%),
    #070b18;
}

.svc-target-dark {
  background: #050814;
}

.svc-workflow-dark {
  background:
    radial-gradient(circle at 16% 18%, rgba(14,165,233,0.20), transparent 26%),
    radial-gradient(circle at 85% 76%, rgba(22,163,74,0.13), transparent 28%),
    #030712;
}

.svc-trust-dark,
.svc-final-dark {
  background: #070b18;
}

.svc-two-col {
  max-width: 1450px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 60px;
}

.svc-two-col h2,
.svc-section-heading h2,
.svc-engine-copy h2,
.svc-trust-panel h2,
.svc-final-dark h2,
.svc-visual-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  color: #fff;
}

.svc-section-heading {
  max-width: 940px;
  margin: 0 auto 52px;
  text-align: center;
}

.svc-section-heading p:not(.svc-pill-label),
.svc-engine-copy p,
.svc-trust-panel p,
.svc-final-dark p,
.svc-visual-copy p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
  line-height: 1.62;
}

.svc-problem-cards,
.svc-trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.svc-problem-cards div,
.svc-trust-list div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.11);
  color: rgba(255,255,255,0.86);
  font-weight: 850;
  box-shadow: inset 0 0 30px rgba(14,165,233,0.025);
}

.svc-main-pillars,
.svc-menu-grid,
.svc-target-cards,
.svc-flow-cards {
  max-width: 1450px;
  margin: 0 auto;
}

.svc-main-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.svc-main-pillars article,
.svc-menu-grid div,
.svc-target-cards article,
.svc-flow-cards article {
  position: relative;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.11);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
  box-shadow: 0 20px 70px rgba(0,0,0,0.16);
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.svc-main-pillars article {
  min-height: 280px;
  padding: 30px 24px;
}

.svc-main-pillars article::before,
.svc-menu-grid div::before,
.svc-target-cards article::before,
.svc-flow-cards article::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(14,165,233,0.14), transparent);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}

.svc-main-pillars article:hover::before,
.svc-menu-grid div:hover::before,
.svc-target-cards article:hover::before,
.svc-flow-cards article:hover::before {
  transform: translateX(120%);
}

.svc-main-pillars article::after,
.svc-menu-grid div::after,
.svc-target-cards article::after,
.svc-flow-cards article::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #0ea5e9, #16a34a);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.svc-main-pillars article:hover,
.svc-menu-grid div:hover,
.svc-target-cards article:hover,
.svc-flow-cards article:hover {
  transform: translateY(-8px);
  border-color: rgba(14,165,233,0.35);
  box-shadow: 0 26px 80px rgba(14,165,233,0.10);
}

.svc-main-pillars article:hover::after,
.svc-menu-grid div:hover::after,
.svc-target-cards article:hover::after,
.svc-flow-cards article:hover::after {
  transform: scaleX(1);
}

.svc-main-pillars span,
.svc-target-cards span,
.svc-flow-cards span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(14,165,233,0.10);
  border: 1px solid rgba(14,165,233,0.22);
  color: #7dd3fc;
  margin-bottom: 24px;
  font-weight: 950;
}

.svc-main-pillars h3,
.svc-target-cards h3,
.svc-flow-cards h3 {
  margin: 0 0 12px;
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  color: #fff;
}

.svc-main-pillars p,
.svc-target-cards p,
.svc-flow-cards p {
  margin: 0;
  color: rgba(255,255,255,0.68);
  line-height: 1.55;
}

.svc-visual-split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
  background:
    radial-gradient(circle at 90% 20%, rgba(14,165,233,0.18), transparent 30%),
    #070b18;
}

.svc-visual-copy {
  max-width: 620px;
}

.svc-collage {
  position: relative;
  min-height: 540px;
}

.svc-collage img {
  position: absolute;
  object-fit: cover;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 30px 90px rgba(0,0,0,0.38);
}

.collage-one {
  width: 62%;
  height: 360px;
  top: 0;
  right: 0;
  animation: imageFloat 7s ease-in-out infinite;
}

.collage-two {
  width: 48%;
  height: 290px;
  left: 0;
  top: 130px;
  animation: imageFloat 8s ease-in-out infinite reverse;
}

.collage-three {
  width: 44%;
  height: 230px;
  right: 12%;
  bottom: 0;
  animation: imageFloat 6.5s ease-in-out infinite;
}

.svc-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.svc-menu-grid div {
  padding: 22px;
}

.svc-menu-grid strong {
  display: block;
  margin-bottom: 9px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.svc-menu-grid span {
  color: rgba(255,255,255,0.66);
  line-height: 1.5;
  font-size: 14px;
}

.svc-engine-panel {
  max-width: 1450px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 54px;
  padding: clamp(32px, 5vw, 68px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 95% 0%, rgba(14,165,233,0.24), transparent 30%),
    radial-gradient(circle at 0% 100%, rgba(22,163,74,0.16), transparent 28%),
    rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 32px 100px rgba(0,0,0,0.35),
    inset 0 0 60px rgba(14,165,233,0.035);
}

.svc-engine-items {
  display: grid;
  gap: 10px;
}

.svc-engine-items div {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 18px;
  padding: 16px 18px;
  border-radius: 17px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.svc-engine-items strong {
  color: #fff;
  text-transform: uppercase;
}

.svc-engine-items span {
  color: rgba(255,255,255,0.68);
}

.svc-system-path {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.svc-system-path div {
  padding: 20px 24px;
  border-radius: 20px;
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-weight: 950;
  text-transform: uppercase;
  box-shadow: 0 14px 35px rgba(0,0,0,0.22);
}

.svc-system-path span {
  width: 3px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(#0ea5e9, #16a34a);
  margin-left: 28px;
  box-shadow: 0 0 18px rgba(14,165,233,0.45);
}

.svc-target-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.svc-target-cards article {
  padding: 24px 20px;
  min-height: 220px;
}

.svc-flow-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.svc-flow-cards article {
  min-height: 210px;
  padding: 24px 18px;
}

.svc-trust-panel {
  max-width: 1450px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 80px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 88% 0%, rgba(14,165,233,0.22), transparent 30%),
    rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 28px 90px rgba(0,0,0,0.26);
}

.svc-trust-list {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.svc-final-dark {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.09);
}

.svc-final-dark h2 {
  margin-bottom: 18px;
}

.svc-final-dark p {
  max-width: 62ch;
  margin: 0 auto 30px;
}

@media (max-width: 1200px) {
  .svc-menu-grid,
  .svc-target-cards,
  .svc-flow-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .svc-main-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 950px) {
  .svc-hero-layout,
  .svc-two-col,
  .svc-engine-panel,
  .svc-visual-split {
    grid-template-columns: 1fr;
  }

  .svc-hero-copy h1 {
    max-width: 12ch;
  }

  .svc-media-stack,
  .svc-collage {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .svc-photo-card,
  .svc-command-centre,
  .svc-collage img {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 260px;
    inset: auto;
  }
}

@media (max-width: 700px) {
  .svc-dark-hero,
  .svc-dark-section,
  .svc-blue-section,
  .svc-service-menu,
  .svc-engine-dark,
  .svc-system-dark,
  .svc-target-dark,
  .svc-workflow-dark,
  .svc-trust-dark,
  .svc-final-dark,
  .svc-visual-split {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .svc-dark-hero {
    min-height: auto;
  }

  .svc-hero-copy h1 {
    font-size: clamp(52px, 18vw, 82px);
  }

  .svc-main-pillars,
  .svc-menu-grid,
  .svc-target-cards,
  .svc-flow-cards,
  .svc-problem-cards,
  .svc-trust-list,
  .svc-command-grid {
    grid-template-columns: 1fr;
  }

  .svc-engine-items div {
    grid-template-columns: 1fr;
  }

  .svc-radar {
    width: 120px;
    height: 120px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .svc-glow,
  .svc-command-centre,
  .svc-card-header strong,
  .svc-radar-ring,
  .svc-radar-ring-two,
  .svc-pulse-bar span,
  .svc-hero-copy h1,
  .svc-grid-bg,
  .svc-scanline,
  .svc-photo-main,
  .svc-collage img {
    animation: none;
  }
}

/* =========================
  Mobile Adjustments
========================= */

@media (max-width: 700px) {
  .site-frame {
    width: 100%;
    overflow: hidden;
  }
}

@media (max-width: 650px) {
  .hero {
    min-height: auto;
  }

  .hero-container {
    grid-template-columns: 1fr;
    padding: 70px 6vw 80px;
    gap: 36px;
    overflow: hidden;
  }

  .hero-title {
    font-size: clamp(48px, 15vw, 66px);
    line-height: 0.9;
  }

  .hero-subtext {
    font-size: 16px;
  }

  .hero-buttons {
    gap: 12px;
  }

  .hero-visual {
    min-width: 0;
    width: 100%;
    min-height: 360px;
    transform: none !important;
    scale: 1;
  }

  .main-panel {
    width: 300px;
    min-height: 260px;
    left: 50%;
    top: 60px;
    right: auto;
    transform: translateX(-50%) !important;
  }

  .main-panel h3 {
    font-size: 26px;
  }

  .floating-card {
    width: 185px;
  }

  .card-a {
    top: 0;
    right: 6vw;
  }

  .card-b {
    right: 2vw;
    bottom: 20px;
  }

  .card-c {
    left: 2vw;
    bottom: 90px;
  }

  .connection-line {
    display: none;
  }
}

@media (max-width: 700px) {
  .whatwe-grid {
    grid-template-columns: 1fr;
    padding: 70px 6vw 50px;
    gap: 32px;
    align-items: start;
  }

  .what-we-do-left {
    position: relative;
    top: auto;
  }

  #what-we-do .what-we-do-left h2 {
    font-size: clamp(38px, 12vw, 58px);
    max-width: 100%;
  }

  .what-we-do-right {
    transform: none !important;
    max-width: 100%;
    width: 100%;
    margin: 0;
  }

  #what-we-do .what-we-do-right p {
    width: 100%;
    padding: 22px;
    font-size: 15px;
  }

  #what-we-do .pillars {
    padding: 45px 6vw 80px;
  }

  #what-we-do .pillars-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  #what-we-do .pillars-grid article {
    min-height: auto;
    width: 100%;
    padding: 24px;
  }
}

@media (max-width: 700px) {
  .system-cycle-section {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .system-cycle-inner {
    width: 100%;
    max-width: 100%;
    padding: 0 6vw;
  }

  .system-cycle-word {
    font-size: clamp(46px, 15vw, 72px);
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .system-progress {
    width: min(300px, 80vw);
  }
}

@media (max-width: 700px) {
  .contact-hero-layout {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .contact-hero-visual {
    display: none;
  }

  .contact-page-hero {
    padding: 80px 6vw 70px;
  }

  .contact-page-title {
    font-size: clamp(44px, 13vw, 64px);
    max-width: 100%;
  }

  .contact-page-sub {
    max-width: 100%;
  }
}

/* =========================
   PAGE TRANSITION WIPE
   Each page defines --page-accent to set its wipe colour
========================= */

/* Default accent — overridden per page */
:root {
  --page-accent: #e8ff47;
}
 
/* The wipe element */
#page-wipe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--page-accent);
  z-index: 998;
  pointer-events: none;
  transform: translateY(0%);
}

.site-frame { position: relative; }

/* Header always above wipe */
header {
  position: sticky !important;
  top: 0;
  z-index: 999 !important;
}