:root {
  --ink: #10202c;
  --ink-deep: #07111a;
  --ink-soft: #5a6b74;
  --paper: #f6fbfc;
  --white: #ffffff;
  --aqua: #5aa6c8;
  --aqua-pale: #eef9fb;
  --copper: #b8735f;
  --line: rgba(16, 32, 44, 0.12);
  --shadow: 0 24px 70px rgba(7, 17, 26, 0.22);
  --rail-width: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body.blade-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: var(--rail-width);
  z-index: 20;
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 16px clamp(20px, 4vw, 56px);
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 8px 12px 8px 8px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 42px rgba(7, 17, 26, 0.12);
  backdrop-filter: blur(14px);
  pointer-events: auto;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(90, 166, 200, 0.35), transparent 50%),
    linear-gradient(160deg, #07111a, #163044);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 12px 30px rgba(90, 166, 200, 0.35);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.right-rail {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 30;
  width: var(--rail-width);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 18px 12px;
  background: rgba(246, 251, 252, 0.82);
  border-left: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.icon-button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(16, 32, 44, 0.14);
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(16, 32, 44, 0.1);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.icon-button:hover,
.icon-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(90, 166, 200, 0.55);
}

.icon-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-button.light {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.burger,
.burger::before,
.burger::after {
  width: 22px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 999px;
}

.burger {
  position: relative;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
}

.burger::before {
  top: -7px;
}

.burger::after {
  bottom: -7px;
}

main,
.footer {
  margin-right: var(--rail-width);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(28px, 5vw, 80px);
  padding: 112px clamp(22px, 5vw, 72px) 24px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 26%, rgba(90, 166, 200, 0.34), transparent 34%),
    radial-gradient(circle at 22% 20%, rgba(184, 115, 95, 0.2), transparent 28%),
    linear-gradient(135deg, #07111a 0%, #10202c 54%, #123f56 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(0deg, rgba(7, 17, 26, 0.86), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  max-width: 560px;
  margin: 0 clamp(28px, 4vw, 72px) 0 0;
  padding: clamp(20px, 2.4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(7, 17, 26, 0.22);
  box-shadow: 0 24px 70px rgba(7, 17, 26, 0.18);
  backdrop-filter: blur(16px);
}

.eyebrow {
  margin: 0 0 14px;
  color: #d7f5fb;
  font-size: clamp(0.72rem, 1.1vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, #0b2940, #1e6c91);
  box-shadow: 0 16px 42px rgba(9, 50, 78, 0.32);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(16, 32, 44, 0.14);
}

.button.ghost {
  min-height: 40px;
  padding: 9px 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero-media {
  position: relative;
  grid-column: 1;
  grid-row: 1;
  z-index: 1;
  left: auto;
  top: auto;
  width: min(100%, 640px);
  aspect-ratio: 1.56;
  align-self: end;
  pointer-events: none;
}

.device {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.06)),
    linear-gradient(145deg, rgba(90, 166, 200, 0.4), rgba(7, 17, 26, 0.9));
  box-shadow: var(--shadow);
}

.device span {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.9rem, 4.8vw, 5rem);
  font-weight: 800;
}

.device-dnc {
  left: 0;
  top: 26%;
  z-index: 3;
  width: 31%;
  aspect-ratio: 1.22;
  transform: rotate(-8deg);
}

.device-web {
  left: 32%;
  top: 0;
  z-index: 2;
  width: 31%;
  aspect-ratio: 1.22;
  transform: rotate(5deg);
  border-left-color: rgba(184, 115, 95, 0.8);
}

.device-designs {
  left: 63%;
  top: 22%;
  z-index: 1;
  width: 37%;
  aspect-ratio: 1.36;
  transform: rotate(-6deg);
}

.device-web span {
  font-size: clamp(1.65rem, 3.7vw, 4rem);
}

.device-designs span {
  font-size: clamp(1.32rem, 2.95vw, 3.4rem);
}

.hero-stats {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(920px, 100%);
  margin-top: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  font-size: 1.08rem;
}

.hero-stats span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(22px, 5vw, 72px);
}

.intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.72fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: stretch;
  color: var(--white);
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(7, 17, 26, 0.95), rgba(16, 32, 44, 0.88) 52%, rgba(18, 63, 86, 0.95)),
    var(--ink);
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 72%);
  pointer-events: none;
}

.intro::after {
  content: "";
  position: absolute;
  right: 8%;
  top: 18%;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(90, 166, 200, 0.34);
  border-radius: 8px;
  transform: rotate(-12deg);
  background: rgba(90, 166, 200, 0.08);
  box-shadow: 0 28px 90px rgba(90, 166, 200, 0.18);
  pointer-events: none;
}

.intro > * {
  position: relative;
  z-index: 1;
}

.section h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2rem, 3.15vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.intro-panel {
  align-self: center;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 70px rgba(7, 17, 26, 0.28);
  backdrop-filter: blur(16px);
}

.intro-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
}

.intro-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.intro-points span {
  min-height: 52px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-left-color: rgba(184, 115, 95, 0.85);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 800;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 36px;
}

.section-heading .eyebrow,
.cta .eyebrow,
.blade .eyebrow {
  color: var(--copper);
}

.intro .eyebrow {
  color: #d7f5fb;
}

.services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 16%, rgba(90, 166, 200, 0.22), transparent 28%),
    linear-gradient(180deg, #eef9fb, #ffffff 46%);
}

.services::before {
  content: "";
  position: absolute;
  left: clamp(22px, 5vw, 72px);
  right: clamp(22px, 5vw, 72px);
  top: 0;
  height: 5px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, var(--copper), var(--aqua), transparent);
}

.services-heading {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(22px, 5vw, 70px);
  align-items: end;
}

.service-note {
  padding: 20px;
  border: 1px solid rgba(16, 32, 44, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 20px 60px rgba(16, 32, 44, 0.08);
}

.service-note strong,
.service-note span {
  display: block;
}

.service-note strong {
  font-size: 1.05rem;
}

.service-note span {
  margin-top: 8px;
  color: var(--ink-soft);
}

.service-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-card,
.project-card,
.process-list article,
.stats-summary article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.service-card {
  min-height: 270px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 50px rgba(16, 32, 44, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(90, 166, 200, 0.38);
  box-shadow: 0 26px 70px rgba(16, 32, 44, 0.12);
}

.service-card span {
  color: var(--aqua);
  font-weight: 800;
}

.service-card h3,
.project-card h3 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.service-card p,
.project-card p,
.process-list p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.process {
  background: var(--ink);
  color: var(--white);
}

.process .section-heading .eyebrow {
  color: #d7f5fb;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.process-list article {
  min-height: 220px;
  padding: 24px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.07);
}

.process-list strong {
  display: block;
  font-size: 1.2rem;
}

.process-list p {
  color: rgba(255, 255, 255, 0.72);
}

.local-seo {
  background:
    linear-gradient(135deg, rgba(238, 249, 251, 0.92), rgba(255, 255, 255, 0.96)),
    var(--white);
}

.local-heading {
  max-width: 860px;
}

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

.local-grid article,
.faq-list article {
  border: 1px solid rgba(16, 32, 44, 0.12);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 20px 60px rgba(16, 32, 44, 0.06);
}

.local-grid h3,
.faq-list h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
}

.local-grid p,
.faq-list p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.projects {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 12%, rgba(184, 115, 95, 0.2), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(90, 166, 200, 0.28), transparent 30%),
    linear-gradient(135deg, #07111a, #10202c 58%, #123f56);
}

.projects::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.72;
  pointer-events: none;
}

.projects .section-heading,
.projects .project-grid {
  position: relative;
  z-index: 1;
}

.projects .section-heading .eyebrow {
  color: #d7f5fb;
}

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

.project-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  padding: 14px;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 70px rgba(7, 17, 26, 0.24);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(90, 166, 200, 0.5);
  box-shadow: 0 30px 90px rgba(7, 17, 26, 0.34);
}

.project-feature {
  grid-column: span 2;
}

.project-preview {
  position: relative;
  min-height: 190px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, rgba(90, 166, 200, 0.25), rgba(7, 17, 26, 0.8));
}

.project-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(7, 17, 26, 0.04), rgba(7, 17, 26, 0.72)),
    linear-gradient(90deg, rgba(7, 17, 26, 0.5), rgba(7, 17, 26, 0.08) 58%, rgba(7, 17, 26, 0.42));
}

.project-preview::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  width: 44%;
  height: 10px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.85) 0 3px, transparent 4px) 0 50% / 18px 10px repeat-x;
  opacity: 0.45;
}

.project-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
  transform: scale(1.01);
  transition: transform 260ms ease, filter 260ms ease;
}

.project-card:hover .project-preview img,
.project-card:focus-visible .project-preview img {
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.05);
}

.project-preview span,
.project-preview strong {
  position: relative;
  z-index: 3;
  text-shadow: 0 8px 28px rgba(7, 17, 26, 0.55);
}

.project-preview span {
  align-self: flex-start;
  border-radius: 999px;
  padding: 4px 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(7, 17, 26, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.project-preview strong {
  max-width: 12ch;
  border-radius: 8px;
  padding: 8px 10px;
  background: rgba(7, 17, 26, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: clamp(1rem, 1.9vw, 2rem);
  line-height: 1;
  text-align: right;
  backdrop-filter: blur(8px);
}

.project-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 2px 4px 4px;
}

.project-type {
  width: fit-content;
  margin-bottom: 14px;
  border: 1px solid rgba(184, 115, 95, 0.5);
  border-radius: 999px;
  padding: 6px 10px;
  color: #ffd7cb;
  background: rgba(184, 115, 95, 0.14);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.project-card h3 {
  color: var(--white);
  overflow-wrap: anywhere;
}

.project-card p {
  color: rgba(255, 255, 255, 0.72);
}

.project-card small {
  display: block;
  margin-top: auto;
  padding-top: 22px;
  color: #d7f5fb;
  font-size: 0.78rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.project-dungeon .project-preview {
  background:
    radial-gradient(circle at 18% 20%, rgba(184, 115, 95, 0.32), transparent 30%),
    linear-gradient(135deg, #07111a, #194a62);
}

.project-tech .project-preview {
  background:
    radial-gradient(circle at 74% 20%, rgba(90, 166, 200, 0.45), transparent 34%),
    linear-gradient(135deg, #07111a, #214e65);
}

.project-wallet .project-preview {
  background:
    linear-gradient(135deg, rgba(184, 115, 95, 0.28), transparent),
    linear-gradient(135deg, #10202c, #5aa6c8);
}

.project-chain .project-preview {
  background:
    radial-gradient(circle at 28% 30%, rgba(90, 166, 200, 0.42), transparent 34%),
    linear-gradient(135deg, #07111a, #2d5265);
}

.project-luna .project-preview {
  background:
    linear-gradient(135deg, rgba(184, 115, 95, 0.34), rgba(90, 166, 200, 0.18)),
    linear-gradient(135deg, #10202c, #07111a);
}

.project-va .project-preview {
  background:
    radial-gradient(circle at 80% 18%, rgba(184, 115, 95, 0.35), transparent 30%),
    linear-gradient(135deg, #194a62, #10202c);
}

.project-plumbing .project-preview {
  background:
    linear-gradient(135deg, rgba(90, 166, 200, 0.45), transparent),
    linear-gradient(135deg, #10202c, #0f5d78);
}

.project-fire .project-preview {
  background:
    radial-gradient(circle at 18% 78%, rgba(184, 115, 95, 0.48), transparent 34%),
    linear-gradient(135deg, #07111a, #123f56);
}

.faq {
  background: var(--white);
}

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

.faq-list article {
  background:
    linear-gradient(135deg, rgba(238, 249, 251, 0.72), rgba(255, 255, 255, 0.92)),
    var(--white);
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 17, 26, 0.95), rgba(16, 52, 70, 0.9)),
    linear-gradient(90deg, var(--ink-deep), var(--ink));
}

.cta h2 {
  max-width: 760px;
}

.footer {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(22px, 5vw, 72px);
  color: var(--ink-soft);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

.footer button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
}

.blade-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(7, 17, 26, 0.52);
  backdrop-filter: blur(4px);
}

.blade {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(470px, calc(100vw - 22px));
  height: 100dvh;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px;
  overflow-y: auto;
  color: var(--white);
  background:
    linear-gradient(155deg, rgba(90, 166, 200, 0.22), transparent 38%),
    linear-gradient(180deg, #07111a, #10202c);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: -30px 0 80px rgba(7, 17, 26, 0.32);
  transform: translateX(104%);
  transition: transform 260ms ease;
}

.blade.is-open {
  transform: translateX(0);
}

#adminBlade {
  width: min(760px, calc(100vw - 22px));
}

.blade-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.blade-header h2 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1;
}

.blade-nav {
  display: grid;
  gap: 8px;
}

.blade-nav a {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1.4rem;
  font-weight: 800;
}

.blade-actions {
  display: grid;
  gap: 12px;
  margin-top: auto;
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-card a {
  overflow-wrap: anywhere;
  font-weight: 800;
}

.contact-card span {
  color: rgba(255, 255, 255, 0.72);
}

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

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 13px 14px;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

input:focus,
textarea:focus {
  border-color: rgba(90, 166, 200, 0.8);
}

textarea {
  resize: vertical;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: #d7f5fb;
}

.stats-panel {
  display: grid;
  gap: 18px;
}

.stats-toolbar,
.stats-block-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.stats-toolbar {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
}

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

.stats-summary article,
.stats-grid article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.stats-summary span,
.stats-summary small {
  display: block;
  color: rgba(255, 255, 255, 0.68);
}

.stats-summary strong {
  display: block;
  margin: 6px 0;
  color: var(--white);
  font-size: 1.8rem;
}

.stats-block {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(31, 108, 145, 0.16), transparent 46%),
    rgba(255, 255, 255, 0.06);
}

.stats-block h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.05rem;
}

.stats-block-heading span,
.stats-note {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
}

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

.stats-grid article {
  display: grid;
  gap: 3px;
  padding: 14px;
  border-radius: 8px;
}

.stats-grid strong {
  color: var(--white);
  font-size: 1.45rem;
}

.stats-grid span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.stats-checklist {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stats-checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.stats-checklist strong {
  color: var(--white);
  font-size: 0.92rem;
}

.stats-checklist small {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.62);
}

.check-pass,
.check-review {
  grid-row: span 2;
  min-width: 56px;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.check-pass {
  color: #d9fbff;
  background: rgba(39, 145, 176, 0.32);
  border: 1px solid rgba(134, 222, 235, 0.34);
}

.check-review {
  color: #ffe4d8;
  background: rgba(187, 100, 72, 0.28);
  border: 1px solid rgba(230, 151, 124, 0.38);
}

.chart {
  height: 180px;
  display: flex;
  align-items: end;
  gap: 10px;
  padding: 18px 12px 28px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.chart span {
  position: relative;
  flex: 1;
  min-width: 18px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--aqua), var(--copper));
}

.chart small {
  position: absolute;
  right: 50%;
  bottom: -22px;
  transform: translateX(50%);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
}

.stats-note {
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 1060px) {
  .hero-media {
    opacity: 0.78;
    right: 70px;
    width: 58vw;
  }

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

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

@media (max-width: 760px) {
  :root {
    --rail-width: 66px;
  }

  .site-header {
    right: var(--rail-width);
    min-height: 70px;
    padding: 12px 16px;
  }

  .brand small {
    display: none;
  }

  .right-rail {
    width: var(--rail-width);
    padding: 12px 8px;
  }

  .icon-button {
    width: 48px;
    height: 48px;
  }

  .hero {
    display: block;
    min-height: 88vh;
    padding: 116px 20px 28px;
  }

  .hero-content {
    max-width: none;
    margin: 8px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .hero-media {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: min(calc(100vw - var(--rail-width) - 40px), 420px);
    margin: 18px 0 30px;
    opacity: 1;
  }

  .device span {
    font-size: clamp(1.25rem, 7.5vw, 2.6rem);
  }

  .device-dnc,
  .device-web {
    width: 34%;
  }

  .device-designs {
    left: 60%;
    width: 40%;
  }

  .device-designs span {
    font-size: clamp(1rem, 5.5vw, 2rem);
  }

  .hero-stats,
  .intro,
  .cta {
    grid-template-columns: 1fr;
  }

  .services-heading {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    width: 100%;
    margin-top: 42px;
  }

  .service-grid,
  .project-grid,
  .process-list,
  .local-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .project-feature {
    grid-column: auto;
  }

  .section {
    padding: 60px 20px;
  }

  .service-card {
    min-height: 220px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px 20px;
  }

  .blade {
    padding: 22px;
  }

  .stats-summary,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-toolbar,
  .stats-block-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand strong {
    font-size: 0.9rem;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .project-preview {
    min-height: 170px;
  }
}
