:root {
  --ink: #10121f;
  --dark: #050810;
  --muted: #656b7b;
  --paper: #ffffff;
  --soft: #f6f8ff;
  --line: rgba(16, 18, 31, 0.12);
  --blue: #0838ff;
  --pink: #6aa4ff;
  --green: #2f6bff;
  --yellow: #ffffff;
  --violet: #6c3df4;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(21, 28, 54, 0.14);
  --neon-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 22px 80px rgba(36, 107, 254, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(90deg, rgba(36, 107, 254, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 61, 154, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  animation: headerDrop 620ms ease both;
}

.brand img {
  width: 112px;
  height: auto;
  object-fit: contain;
}

.brand {
  padding: 8px 10px;
  border: 1px solid rgba(16, 18, 31, 0.08);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(21, 28, 54, 0.08);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  font-size: 0.94rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--pink), var(--yellow));
  content: "";
  transition: width 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  background: var(--paper);
}

.btn.primary {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--blue), var(--pink));
  background-size: 180% 180%;
  box-shadow: 0 14px 32px rgba(36, 107, 254, 0.25);
  animation: gradientShift 7s ease infinite;
}

.btn.ghost {
  background: transparent;
}

.btn.small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.86rem;
}

.btn.danger {
  border-color: rgba(255, 61, 154, 0.35);
  color: #b11760;
  background: #fff3f8;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section-pad {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  align-items: center;
  gap: clamp(32px, 6vw, 78px);
  min-height: calc(100svh - 82px);
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(35deg, rgba(47, 107, 255, 0.18), transparent 34%),
    linear-gradient(180deg, #050810 0%, #10121f 72%, #f8fbff 72%, #f8fbff 100%);
  color: #fff;
}

.page-hero {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(35deg, rgba(47, 107, 255, 0.2), transparent 40%),
    #050810;
  color: #fff;
}

.compact-hero {
  min-height: 460px;
  display: grid;
  align-content: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.8rem, 7.2vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
}

.hero-text {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.hero .hero-text,
.page-hero .hero-text {
  color: rgba(255, 255, 255, 0.74);
}

.hero-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-marquee span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.08);
}

.hero-actions,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 720px;
  margin-top: 42px;
}

.hero-stats span {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  display: block;
  font-size: 1.55rem;
}

.hero-media {
  position: relative;
  min-height: 620px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--neon-shadow);
  transform: perspective(1100px) rotateY(-4deg) rotateX(2deg);
  animation: floatMedia 7s ease-in-out infinite;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.floating-panel {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: min(280px, calc(100% - 44px));
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  color: #fff;
  background: rgba(16, 18, 31, 0.76);
  backdrop-filter: blur(14px);
}

.panel-kicker {
  display: block;
  margin-bottom: 6px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
}

.performance-bars {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.performance-bars i {
  position: relative;
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.performance-bars i::after {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar-width);
  border-radius: inherit;
  background: linear-gradient(90deg, #ffffff, #6aa4ff, #0838ff);
  box-shadow: 0 0 20px rgba(106, 164, 255, 0.58);
  content: "";
  animation: barLoad 1.6s ease both, barPulse 2.8s ease-in-out infinite;
}

.intro-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1fr;
  gap: clamp(26px, 5vw, 80px);
  padding: 64px clamp(18px, 5vw, 72px);
  color: #fff;
  background: #141827;
}

.intro-band p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.2rem;
  line-height: 1.7;
}

.motion-strip {
  overflow: hidden;
  padding: 22px 0;
  color: #fff;
  background: linear-gradient(90deg, var(--blue), #6aa4ff, var(--pink));
}

.motion-strip div {
  display: flex;
  width: max-content;
  gap: 34px;
  animation: marqueeMove 24s linear infinite;
}

.motion-strip span {
  font-size: clamp(1.05rem, 3vw, 2rem);
  font-weight: 950;
  white-space: nowrap;
  text-transform: uppercase;
}

.section-note {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.data-section {
  background:
    linear-gradient(135deg, rgba(8, 56, 255, 0.08), transparent 30%),
    #fff;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.data-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.data-card::after {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(8, 56, 255, 0.22);
  border-radius: 50%;
  content: "";
  animation: pulseRing 3.2s ease-in-out infinite;
}

.data-card span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--blue);
  font-size: 2.1rem;
  font-weight: 950;
}

.data-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.data-card p {
  color: var(--muted);
  line-height: 1.65;
}

.reporting-visual {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.86fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: center;
  margin-top: 24px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(8, 56, 255, 0.28), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
}

.reporting-visual img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: calc(var(--radius) - 4px);
  object-fit: cover;
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.3);
}

.reporting-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.reporting-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
}

.reporting-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.reporting-points span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.08);
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.metrics-row span {
  padding: 18px;
  border: 1px solid rgba(8, 56, 255, 0.16);
  border-radius: var(--radius);
  background: #f8fbff;
}

.metrics-row strong {
  display: block;
  color: var(--blue);
  font-size: 1.7rem;
}

.section-heading {
  max-width: 890px;
  margin-bottom: 34px;
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  max-width: none;
}

.service-grid,
.blog-grid,
.feature-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-showcase {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.service-showcase article {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(8, 56, 255, 0.34), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
}

.service-showcase article::after {
  position: absolute;
  inset: auto 18px 18px 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  content: "";
  animation: scanLine 3s ease-in-out infinite;
}

.service-showcase span {
  display: inline-flex;
  margin-bottom: 28px;
  color: #8fb4ff;
  font-size: 2.2rem;
  font-weight: 950;
}

.service-showcase h3 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.service-showcase p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

.service-card,
.blog-grid article,
.project-card,
blockquote,
.feature-grid article,
.faq-grid article,
.admin-panel,
.admin-list-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 42px rgba(21, 28, 54, 0.08);
}

.seo-band {
  color: #fff;
  background: #141827;
}

.seo-band .eyebrow {
  color: var(--yellow);
}

.seo-band h2 {
  max-width: 980px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.feature-grid article,
.faq-grid article {
  padding: 24px;
}

.feature-grid article {
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.feature-grid p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.faq-section {
  background: #f8fbff;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.service-card {
  min-height: 280px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(8,56,255,0.14), rgba(106,164,255,0.12));
  content: "";
  transition: opacity 180ms ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
}

.service-card:hover,
.project-card:hover,
.blog-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(36, 107, 254, 0.24);
  box-shadow: 0 24px 70px rgba(21, 28, 54, 0.14);
}

.service-card p,
.blog-grid p,
.project-card p,
blockquote p {
  color: var(--muted);
  line-height: 1.65;
}

.icon-wrap {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  border-radius: var(--radius);
  color: #fff;
  font-weight: 900;
  background: var(--ink);
}

.color-blue .icon-wrap { background: var(--blue); }
.color-pink .icon-wrap { background: var(--pink); }
.color-green .icon-wrap { background: var(--green); }
.color-yellow .icon-wrap { color: #fff; background: #0d46ff; }

.projects-section {
  background:
    linear-gradient(135deg, rgba(47, 107, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #f8fbff 0%, #fff 100%);
}

.process-section {
  color: #fff;
  background: #050810;
}

.process-section .eyebrow {
  color: var(--yellow);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-grid article {
  min-height: 240px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.035));
  box-shadow: 0 22px 70px rgba(0,0,0,0.24);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--green);
  font-size: 2rem;
  font-weight: 950;
}

.process-grid p {
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  background: #fff;
  cursor: pointer;
}

.filter.active {
  color: #fff;
  border-color: transparent;
  background: var(--ink);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.project-card {
  overflow: hidden;
}

.video-shell {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #111827;
}

.video-shell iframe,
.video-shell video,
.video-shell img {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.project-card-content {
  padding: 20px;
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: var(--radius);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--violet), var(--pink));
}

.quote-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

blockquote {
  margin: 0;
  padding: 28px;
}

cite {
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}

.blog-grid article {
  padding: 24px;
}

.blog-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--pink);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 76px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(36, 107, 254, 0.3), transparent 28%),
    linear-gradient(45deg, rgba(255, 61, 154, 0.22), transparent 30%),
    #121728;
}

.contact-page {
  min-height: calc(100svh - 82px);
  align-items: center;
}

.contact-section .eyebrow {
  color: var(--yellow);
}

.contact-copy p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a {
  font-weight: 900;
}

.contact-form,
.admin-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 14px;
  color: var(--ink);
  font: inherit;
  background: #fff;
}

textarea {
  resize: vertical;
}

.contact-form {
  padding: 24px;
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
}

.map-section {
  background: #f8fbff;
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 16 / 7;
  background: #111827;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease var(--delay), transform 620ms ease var(--delay);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes headerDrop {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes floatMedia {
  0%, 100% { transform: perspective(1100px) rotateY(-4deg) rotateX(2deg) translateY(0); }
  50% { transform: perspective(1100px) rotateY(-1deg) rotateX(1deg) translateY(-12px); }
}

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

@keyframes pulseRing {
  0%, 100% { transform: scale(0.92); opacity: 0.42; }
  50% { transform: scale(1.14); opacity: 0.12; }
}

@keyframes barLoad {
  from { width: 0; }
  to { width: var(--bar-width); }
}

@keyframes barPulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.35); }
}

@keyframes scanLine {
  0%, 100% { transform: translateX(-30%); opacity: 0.28; }
  50% { transform: translateX(30%); opacity: 0.86; }
}

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

/* Premium dark-blue theme */
body {
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(8, 56, 255, 0.18) 0%, transparent 34%),
    linear-gradient(250deg, rgba(47, 107, 255, 0.14) 0%, transparent 38%),
    linear-gradient(180deg, #050810 0%, #090d1d 45%, #050810 100%);
  background-attachment: fixed;
}

.site-header {
  grid-template-columns: auto 1fr auto;
  margin: 18px clamp(14px, 3vw, 44px) 0;
  min-height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  color: #fff;
  background: rgba(5, 8, 16, 0.78);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.34);
}

.brand {
  position: relative;
  width: 188px;
  height: 58px;
  overflow: hidden;
  padding: 8px 12px;
  border-color: rgba(255, 255, 255, 0.12);
  background: #fff;
}

.brand img {
  position: static;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.main-nav a {
  color: rgba(255, 255, 255, 0.74);
}

.main-nav a:hover,
.main-nav a.active {
  color: #fff;
}

.main-nav a::after {
  background: linear-gradient(90deg, #ffffff, #6aa4ff, var(--blue));
}

.header-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, #2f6bff, #0838ff);
  box-shadow: 0 14px 38px rgba(8, 56, 255, 0.32);
}

.hero,
.page-hero,
.intro-band,
.seo-band,
.process-section,
.contact-section {
  background:
    linear-gradient(135deg, rgba(8, 56, 255, 0.26) 0%, transparent 34%),
    linear-gradient(250deg, rgba(106, 164, 255, 0.12) 0%, transparent 32%),
    #050810;
}

.hero {
  min-height: calc(100svh - 96px);
}

.hero-media {
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 8, 16, 0.54));
  content: "";
}

.floating-panel {
  z-index: 2;
}

.data-section,
.faq-section,
.map-section,
.projects-section,
.blog-section,
main > .section-pad {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    #090d1d;
}

.service-card,
.blog-grid article,
.project-card,
blockquote,
.faq-grid article,
.data-card {
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
}

.service-card p,
.blog-grid p,
.project-card p,
blockquote p,
.faq-grid p,
.data-card p,
.section-note {
  color: rgba(255, 255, 255, 0.68);
}

.metrics-row span {
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.hero-stats strong[data-count] {
  color: #fff;
  text-shadow: 0 0 28px rgba(106, 164, 255, 0.52);
}

.hero-stats em {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
  line-height: 1.4;
}

.contact-form {
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.9fr 1fr;
  align-items: start;
  padding: 70px clamp(18px, 7vw, 92px) 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  background: #050810;
}

.footer-brand-block {
  display: grid;
  gap: 18px;
  max-width: 360px;
}

.site-footer img {
  position: relative;
  width: 210px;
  height: 72px;
  padding: 0;
  max-width: 100%;
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.footer-brand-block > img {
  width: 230px;
  height: 88px;
  object-fit: contain;
}

.footer-brand-block p,
.footer-column a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-column h3 {
  color: #fff;
  font-size: 1rem;
}

.footer-contact .btn {
  width: fit-content;
  margin-top: 10px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
}

.reveal-item {
  transform: translateY(34px) scale(0.985);
}

.reveal-item.is-visible {
  transform: translateY(0) scale(1);
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .header-quote {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    margin: 10px 12px 0;
  }

  .brand {
    width: 164px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

/* Final agency polish */
body {
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(8, 56, 255, 0.2) 0%, transparent 36%),
    linear-gradient(250deg, rgba(106, 164, 255, 0.12) 0%, transparent 40%),
    #050810;
}

.site-header {
  grid-template-columns: auto 1fr auto;
  margin: 18px clamp(14px, 3vw, 44px) 0;
  min-height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(5, 8, 16, 0.82);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.34);
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(8, 56, 255, 0.28), transparent 36%),
    linear-gradient(260deg, rgba(106, 164, 255, 0.12), transparent 34%),
    #050810;
}

.hero::before,
.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 86%);
  content: "";
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(3.1rem, 8vw, 7.4rem);
}

.hero-text,
.page-hero .hero-text {
  color: rgba(255, 255, 255, 0.74);
}

.hero-marquee span,
.reporting-points span,
.social-links a {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hero-marquee span:hover,
.reporting-points span:hover,
.social-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.service-card,
.project-card,
.blog-grid article,
.data-card,
.service-showcase article,
.faq-grid article {
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.service-card:hover,
.project-card:hover,
.blog-grid article:hover,
.data-card:hover,
.service-showcase article:hover,
.faq-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(106, 164, 255, 0.34);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
}

.site-footer {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.9fr 1fr;
  align-items: start;
  padding: 76px clamp(18px, 7vw, 92px) 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  background: #050810;
}

.footer-brand-block {
  display: grid;
  gap: 18px;
  max-width: 380px;
}

.site-footer img,
.footer-brand-block > img {
  width: 230px;
  height: 88px;
  padding: 0;
  border-radius: 8px;
  object-fit: contain;
  background: #fff;
}

.footer-column {
  display: grid;
  gap: 12px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.dashboard-card {
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.dashboard-card span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--blue);
  font-size: 2rem;
  font-weight: 950;
}

.dashboard-card p {
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 1050px) {
  .site-footer,
  .dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto auto;
    margin: 10px 12px 0;
  }

  .header-quote {
    display: none;
  }

  .site-footer,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: #fff;
  background: #10121f;
}

.site-footer img {
  width: 96px;
  padding: 8px;
  border-radius: var(--radius);
  background: #fff;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-weight: 800;
}

.admin-body {
  background:
    linear-gradient(135deg, rgba(36, 107, 254, 0.08), transparent 32%),
    linear-gradient(45deg, rgba(255, 61, 154, 0.08), transparent 38%),
    #f8fbff;
}

.private-admin {
  min-height: 100svh;
}

.admin-cms {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  min-height: 100svh;
}

.admin-cms:has(.admin-sidebar[hidden]) {
  grid-template-columns: 1fr;
}

.admin-cms:has(.admin-sidebar[hidden]) .auth-panel {
  display: grid;
  place-items: center;
  min-height: 100svh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(36, 107, 254, 0.34), transparent 34%),
    linear-gradient(45deg, rgba(255, 61, 154, 0.26), transparent 36%),
    #10121f;
}

.admin-brand {
  width: 188px;
}

.admin-sidebar h1 {
  font-size: 2.1rem;
  line-height: 1;
}

.admin-tabs {
  display: grid;
  gap: 10px;
}

.admin-tabs button {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 900;
  text-align: left;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.admin-tabs button.active {
  color: #10121f;
  background: #ffd23f;
}

.admin-sidebar-actions {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.auth-panel,
.editor-panel {
  padding: clamp(24px, 5vw, 56px);
}

.auth-card,
.editor-topbar,
.cms-card,
.admin-preview {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.auth-card {
  max-width: 560px;
  padding: 28px;
}

.auth-help,
.status-message {
  color: var(--muted);
  line-height: 1.6;
}

.editor-topbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
  padding: 22px;
}

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

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

.cms-grid,
.repeat-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.cms-card {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.logo-admin-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 112px;
  margin: 4px 0 2px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.logo-admin-preview img {
  max-width: 260px;
  max-height: 86px;
  object-fit: contain;
}

.repeat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-preview {
  margin-top: 24px;
  padding: 24px;
}

.preview-hero {
  margin-bottom: 18px;
  padding: 24px;
  border-radius: var(--radius);
  color: #fff;
  background: #10121f;
}

.admin-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px) 72px;
}

.admin-panel,
.admin-list-panel {
  padding: 24px;
}

.admin-panel h1 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 4rem);
}

.admin-project-list {
  display: grid;
  gap: 14px;
}

.admin-item {
  display: grid;
  grid-template-columns: 112px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.admin-item img {
  width: 112px;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  object-fit: cover;
  background: #111827;
}

.admin-item h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.admin-item p {
  margin: 0;
  color: var(--muted);
}

.admin-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.empty-state {
  padding: 28px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1050px) {
  .hero,
  .intro-band,
  .contact-section,
  .admin-layout,
  .admin-cms {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    height: auto;
  }

  .service-grid,
  .projects-grid,
  .blog-grid,
  .feature-grid,
  .faq-grid,
  .process-grid,
  .data-grid,
  .service-showcase,
  .reporting-visual,
  .metrics-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-media,
  .hero-media img {
    min-height: 460px;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .main-nav.open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    padding-top: 12px;
  }

  .main-nav.open a {
    padding: 14px 0;
    border-top: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
  }

  .hero-stats,
  .quote-row,
  .service-grid,
  .projects-grid,
  .blog-grid,
  .feature-grid,
  .faq-grid,
  .process-grid,
  .data-grid,
  .service-showcase,
  .reporting-visual,
  .metrics-row,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    transform: none;
  }

  .map-frame {
    aspect-ratio: 1 / 1.15;
  }

  .section-heading.split,
  .site-footer {
    align-items: start;
    flex-direction: column;
  }

  .admin-item {
    grid-template-columns: 1fr;
  }

  .cms-grid,
  .repeat-list,
  .editor-topbar {
    grid-template-columns: 1fr;
  }

  .editor-topbar {
    display: grid;
  }

  .admin-item img {
    width: 100%;
  }
}
