:root {
  --brand: #00bfff;
  --brand-strong: #009fd4;
  --ink-950: #020617;
  --ink-900: #0f172a;
  --ink-800: #1e293b;
  --ink-700: #334155;
  --ink-600: #475569;
  --ink-500: #64748b;
  --ink-300: #cbd5e1;
  --ink-200: #e2e8f0;
  --ink-100: #f1f5f9;
  --white: #ffffff;
  --container-max: 1280px;
  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --shadow-sm: 0 6px 18px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 16px 38px rgba(15, 23, 42, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.page-home {
  background:
    radial-gradient(circle at top left, rgba(0, 191, 255, 0.08), transparent 26%),
    var(--white);
}

a {
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease, opacity 0.2s ease;
}

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

.container {
  width: min(92%, var(--container-max));
  margin: 0 auto;
}

.site-main {
  min-height: 62vh;
}

.page-inner .site-main {
  padding-top: 112px;
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(0, 0, 0, 0.84);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-nav.is-scrolled {
  background: rgba(0, 0, 0, 0.96);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.nav-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-wrap {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.brand-logo {
  width: 1.68rem;
  height: 1.68rem;
  object-fit: contain;
}

.brand-text {
  color: #fff;
  font-size: 1.04rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 560;
}

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

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  border-radius: 0.6rem;
  padding: 0.55rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 999px;
}

.nav-toggle span + span {
  margin-top: 0.28rem;
}

.mobile-menu {
  display: none;
  padding: 0 4% 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.98);
}

.mobile-menu a {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.97rem;
  font-weight: 560;
  padding: 0.8rem 0;
}

.mobile-menu a.active {
  color: #fff;
}

.mobile-menu .btn {
  margin-top: 0.65rem;
  width: 100%;
  justify-content: center;
  padding: 0.82rem 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 1px solid transparent;
  border-radius: 0.7rem;
  background: var(--brand);
  color: #071422;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 0.86rem 1.45rem;
  box-shadow: 0 10px 24px rgba(0, 191, 255, 0.24);
}

.btn:hover {
  background: #1cc8ff;
}

.btn:focus-visible {
  outline: 2px solid #7ddfff;
  outline-offset: 2px;
}

.btn-nav {
  padding: 0.72rem 1.25rem;
  box-shadow: none;
}

.btn-dark {
  background: #000;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.btn-dark:hover {
  background: #111;
}

.btn-wide {
  width: 100%;
}

.btn-ghost-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.16);
}

.icon-badge {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.72rem;
  background: rgba(0, 191, 255, 0.12);
  border: 1px solid rgba(0, 191, 255, 0.3);
  color: var(--brand-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-badge-lg {
  width: 2.35rem;
  height: 2.35rem;
}

.icon-badge svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.85rem;
  color: var(--ink-900);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.15rem, 5.2vw, 4.1rem);
  font-weight: 820;
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 800;
}

h3 {
  font-size: 1.12rem;
  font-weight: 700;
}

p {
  margin: 0 0 0.9rem;
  color: var(--ink-600);
}

.lead {
  max-width: 66ch;
  font-size: 1.09rem;
  color: var(--ink-600);
}

.eyebrow {
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.kicker {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  color: var(--brand);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.section {
  padding: 6.1rem 0;
}

.section-white {
  background: #fff;
}

.section-muted {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
}

.section-dark {
  background: #000;
}

.hero-home {
  --hero-glow-x: 74%;
  --hero-glow-y: 54%;
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  max-height: 920px;
  overflow: hidden;
}

.hero-home-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: hero-zoom 16s ease-out forwards;
}

@keyframes hero-zoom {
  from {
    transform: scale(1.07);
  }

  to {
    transform: scale(1.01);
  }
}

.hero-home-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.52) 57%, rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(64rem 32rem at 15% 92%, rgba(0, 0, 0, 0.35), transparent 72%);
}

.hero-home-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-home-glow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(20rem, 36vw, 33rem);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(125, 223, 255, 0.34) 0%, rgba(56, 189, 248, 0.16) 34%, transparent 72%),
    radial-gradient(circle, rgba(186, 230, 253, 0.2) 8%, transparent 64%);
  opacity: 0.82;
  filter: blur(32px);
  transform: translate3d(var(--hero-glow-x), var(--hero-glow-y), 0) translate3d(-50%, -50%, 0);
  will-change: transform;
}

.hero-home-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  align-items: center;
  color: #fff;
  padding-block: 7.5rem 2.5rem;
}

.hero-home-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.72fr);
  gap: 2rem;
  align-items: end;
}

.hero-copy {
  max-width: 720px;
}

.hero-brand-panel {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding: 0.95rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.2rem;
  background: rgba(4, 10, 22, 0.45);
  box-shadow: 0 20px 50px rgba(2, 6, 23, 0.24);
  backdrop-filter: blur(14px);
}

.hero-brand-mark {
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-brand-mark img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
}

.hero-brand-label,
.hero-brand-text {
  margin: 0;
  color: #fff;
}

.hero-brand-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(125, 223, 255, 0.92);
}

.hero-brand-text {
  margin-top: 0.18rem;
  max-width: 34ch;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-home h1 {
  max-width: 9.6ch;
  margin: 0;
  color: #fff;
  font-size: clamp(2.8rem, 8.2vw, 6.35rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero-lead {
  max-width: 58ch;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.06rem;
}

.hero-actions {
  margin-top: 1.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-proof-grid {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.hero-proof-item {
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(2, 6, 23, 0.38);
  backdrop-filter: blur(12px);
}

.hero-proof-item strong {
  display: block;
  margin-bottom: 0.28rem;
  color: #fff;
  font-size: 0.93rem;
}

.hero-proof-item span {
  display: block;
  color: rgba(226, 232, 240, 0.82);
  font-size: 0.86rem;
  line-height: 1.5;
}

.hero-spotlight {
  justify-self: end;
  width: min(100%, 420px);
  padding: 1.35rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(5, 10, 20, 0.7), rgba(5, 10, 20, 0.46));
  box-shadow: 0 28px 60px rgba(2, 6, 23, 0.36);
  backdrop-filter: blur(16px);
}

.hero-spotlight-logo-row {
  display: flex;
  align-items: start;
  gap: 0.9rem;
}

.hero-spotlight-logo-row img {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.45rem;
}

.hero-spotlight-label {
  margin: 0 0 0.35rem;
  color: rgba(125, 223, 255, 0.92);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-spotlight h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.1;
}

.hero-spotlight-list {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.hero-spotlight-list li {
  position: relative;
  padding-left: 1.15rem;
  color: rgba(226, 232, 240, 0.88);
}

.hero-spotlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 6px rgba(0, 191, 255, 0.12);
}

.hero-spotlight-metric {
  margin-top: 1.1rem;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.hero-spotlight-metric span {
  margin-bottom: 0.22rem;
  color: rgba(148, 163, 184, 0.92);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.hero-spotlight-metric strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.45;
}

.trust-strip {
  border-top: 1px solid var(--ink-100);
  border-bottom: 1px solid var(--ink-100);
  background: rgba(248, 250, 252, 0.82);
  padding: 1.5rem 0;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.trust-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--brand);
  flex-shrink: 0;
}

.trust-item p {
  margin: 0;
  color: var(--ink-700);
  font-size: 0.94rem;
  font-weight: 530;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.outcomes-image-wrap {
  position: relative;
}

.outcomes-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.before-after-card {
  position: absolute;
  right: -1.4rem;
  bottom: -1.4rem;
  width: min(230px, 80%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  background: #fff;
  padding: 1rem 1.05rem;
  box-shadow: var(--shadow-md);
}

.before-after-card .label {
  margin: 0;
  color: var(--ink-500);
  text-transform: uppercase;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.before-after-card .value {
  margin: 0.3rem 0 0;
  color: var(--ink-700);
  font-size: 0.86rem;
  font-weight: 650;
}

.before-after-card .value-accent {
  color: var(--brand-strong);
}

.before-after-card .line {
  margin: 0.75rem 0;
  border-top: 1px solid var(--ink-100);
}

.section-head {
  margin-bottom: 1.8rem;
}

.section-head.center {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.section-head.split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.stack-cards {
  display: grid;
  gap: 0.95rem;
}

.outcome-card {
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 1.05rem 1.1rem;
}

.outcome-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}

.outcome-card-head h3 {
  margin: 0;
}

.outcome-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

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

.process-card {
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 1.3rem;
}

.step-number {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--ink-200);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}

.process-card p {
  margin: 0;
  font-size: 0.93rem;
}

.process-callout {
  margin: 1.35rem auto 0;
  border: 1px solid rgba(14, 165, 233, 0.22);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  box-shadow: var(--shadow-sm);
  padding: 1rem 1.25rem;
  text-align: center;
}

.process-callout-eyebrow {
  margin: 0 0 0.4rem;
  color: var(--ink-900);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.process-callout p {
  margin: 0;
  font-size: 0.94rem;
}

.text-link {
  color: var(--ink-700);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.text-link:hover {
  color: var(--ink-900);
}

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

.example-card {
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.example-image-wrap {
  position: relative;
  overflow: hidden;
  height: 236px;
}

.example-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.example-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.1));
}

.example-card:hover .example-image-wrap img {
  transform: scale(1.05);
}

.example-body {
  padding: 1.2rem;
}

.example-body p {
  margin: 0;
  font-size: 0.93rem;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem;
  align-items: center;
}

.section-dark h2 {
  color: #fff;
}

.section-dark p {
  color: #94a3b8;
  font-size: 1.03rem;
  max-width: 56ch;
}

.cta-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  opacity: 0.82;
}

.page-intro {
  padding-top: 1.85rem;
  padding-bottom: 2.6rem;
}

.narrow {
  max-width: 860px;
}

.page-intro-services {
  padding-bottom: 1.3rem;
}

.services-list-section {
  padding-top: 1.25rem;
}

.intro-grid,
.intro-grid-large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}

.intro-grid-large {
  gap: 4rem;
  align-items: center;
}

.intro-image {
  width: 100%;
  height: 236px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.intro-image.tall {
  height: 430px;
}

.service-stack {
  display: grid;
  gap: 1.2rem;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
}

.service-row.reverse .service-row-image {
  order: 2;
}

.service-row.reverse .service-row-body {
  order: 1;
}

.service-row-image {
  position: relative;
}

.service-row-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
}

.service-row-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.service-row-body {
  padding: 2rem;
}

.service-title-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.service-title-row h2 {
  margin: 0;
}

.service-row-body p {
  margin-bottom: 1rem;
}

.service-row-body ul,
.industry-body ul,
.check-list,
.contact-expect ul,
.contact-form-wrap ul {
  margin: 0;
  padding-left: 1.1rem;
}

.service-row-body li,
.industry-body li,
.check-list li,
.contact-expect li,
.contact-form-wrap li {
  margin-bottom: 0.45rem;
  color: var(--ink-600);
}

.center-card {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  background: #fff;
  padding: 2.3rem;
  box-shadow: var(--shadow-sm);
}

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

.industry-card {
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.industry-image-wrap {
  position: relative;
  height: 218px;
}

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

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.12));
}

.industry-header {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.95rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.6rem;
}

.industry-header h3 {
  margin: 0;
  color: #fff;
  font-size: 0.96rem;
}

.industry-header span {
  white-space: nowrap;
  border-radius: 999px;
  background: var(--brand);
  color: var(--ink-900);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
}

.industry-body {
  padding: 1rem;
}

.fit-block {
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  background: #fff;
  padding: 2.1rem;
  box-shadow: var(--shadow-sm);
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.2rem 0 1.6rem;
}

.fit-item {
  border: 1px solid var(--ink-100);
  border-radius: 10px;
  background: #fff;
  padding: 0.75rem 0.85rem;
  color: var(--ink-700);
  font-size: 0.92rem;
}

.image-badge-wrap {
  position: relative;
}

.floating-badge {
  position: absolute;
  left: -1rem;
  bottom: -1rem;
  border: 1px solid var(--ink-100);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow-md);
  padding: 0.9rem;
}

.floating-badge p {
  margin: 0 0 0.2rem;
  color: var(--ink-500);
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.floating-badge strong {
  font-size: 0.84rem;
}

.approach-block {
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 2.1rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

.about-bridge-section {
  position: relative;
  z-index: 2;
  margin: -2rem 0 -2rem;
}

.about-bridge-card {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--ink-100);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-md);
  padding: 1.15rem 1.3rem;
}

.about-bridge-card p {
  margin: 0;
}

.about-bridge-label {
  margin: 0 0 0.35rem;
  color: var(--ink-500);
  text-transform: uppercase;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.check-list li {
  margin-bottom: 0.55rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.82rem;
}

.why-card {
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 1.05rem;
}

.why-card p {
  margin: 0;
  font-size: 0.93rem;
}

.center-text {
  max-width: 840px;
  text-align: center;
}

.center-text p {
  margin: 0 auto 1.2rem;
  max-width: 62ch;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-email {
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-md);
  padding: 0.95rem;
  margin: 1.5rem 0;
}

.contact-email h3,
.contact-expect h3 {
  margin-bottom: 0.35rem;
}

.contact-email p {
  margin: 0;
  font-size: 0.96rem;
}

.contact-expect {
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  background: #f8fafc;
  padding: 1rem;
  margin-bottom: 1.15rem;
}

.contact-image {
  width: 100%;
  height: 206px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap {
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 1.35rem;
}

.contact-form {
  display: grid;
  gap: 0.95rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--ink-700);
  font-size: 0.9rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--ink-300);
  border-radius: 10px;
  padding: 0.72rem 0.78rem;
  font: inherit;
  color: var(--ink-900);
  background: #fff;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0, 191, 255, 0.16);
}

.form-note {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.76rem;
  text-align: center;
}


.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-error {
  margin: 0;
  color: #b91c1c;
  font-size: 0.8rem;
  text-align: center;
}

.form-error[hidden] {
  display: none;
}

.contact-success {
  min-height: 360px;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 0.38rem;
}

.contact-success[hidden] {
  display: none;
}

.success-dot {
  width: 4rem;
  height: 4rem;
  margin: 0 auto;
  border-radius: 999px;
  background: rgba(0, 191, 255, 0.14);
  border: 1px solid rgba(0, 191, 255, 0.4);
}

.site-footer {
  background: #000;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 2rem;
  padding: 4rem 0 2.5rem;
}

.footer-brand-col {
  max-width: 44ch;
}

.footer-brand-link {
  margin-bottom: 1rem;
}

.footer-logo-wrap {
  background: #0a0a0a;
  border-color: #262626;
}

.site-footer h4 {
  margin: 0 0 0.9rem;
  color: #94a3b8;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.site-footer a {
  display: block;
  text-decoration: none;
  color: #94a3b8;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer p {
  color: #94a3b8;
  font-size: 0.92rem;
  margin: 0;
  max-width: 44ch;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 1rem 0 1.3rem;
}

.footer-bottom p {
  margin: 0;
  color: #64748b;
  font-size: 0.77rem;
  text-align: center;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(12px);
}

.js.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

@media (max-width: 1100px) {
  .outcomes-grid,
  .intro-grid,
  .intro-grid-large,
  .service-row,
  .industry-grid,
  .final-cta-grid,
  .contact-grid,
  .approach-grid,
  .why-grid,
  .footer-grid,
  .process-grid,
  .trust-grid,
  .examples-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .service-row.reverse .service-row-image,
  .service-row.reverse .service-row-body {
    order: initial;
  }

  .before-after-card {
    right: 1rem;
    bottom: 1rem;
  }

  .section-head.split {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

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

  .hero-home-content {
    padding-block: 6.8rem 2.5rem;
  }

  .hero-home-shell {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-spotlight {
    justify-self: stretch;
    width: 100%;
  }

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

  .page-inner .site-main {
    padding-top: 98px;
  }

  .section {
    padding: 4.1rem 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(94%, var(--container-max));
  }

  .nav-inner {
    min-height: 74px;
  }

  .brand-text {
    font-size: 0.96rem;
  }

  .hero-home {
    min-height: 560px;
  }

  .hero-brand-panel {
    width: 100%;
    align-items: flex-start;
  }

  .hero-brand-mark {
    width: 3.7rem;
    height: 3.7rem;
  }

  .hero-home h1 {
    font-size: clamp(2.25rem, 11vw, 3.6rem);
    max-width: 10ch;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .page-intro {
    padding-top: 1.2rem;
    padding-bottom: 3.7rem;
  }

  .intro-image,
  .intro-image.tall,
  .service-row-image img,
  .outcomes-image-wrap img,
  .cta-image {
    height: 260px;
  }

  .floating-badge {
    position: static;
    margin-top: 0.8rem;
  }

  .about-bridge-section {
    margin: 0.8rem 0 0;
  }

  .about-bridge-card {
    padding: 1rem 1.05rem;
  }

  .contact-success {
    min-height: 280px;
  }
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .hero-home-glow {
    display: none;
  }
}

.btn-ghost-dark {
  background: rgba(15, 23, 42, 0.04);
  color: var(--ink-900);
  border-color: rgba(15, 23, 42, 0.14);
  box-shadow: none;
}

.btn-ghost-dark:hover {
  background: rgba(15, 23, 42, 0.08);
}

.btn-ghost-danger {
  background: rgba(153, 27, 27, 0.04);
  color: #991b1b;
  border-color: rgba(153, 27, 27, 0.18);
  box-shadow: none;
}

.btn-ghost-danger:hover {
  background: rgba(153, 27, 27, 0.08);
}

.blog-intro {
  background:
    radial-gradient(circle at right top, rgba(0, 191, 255, 0.15), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.blog-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.9fr);
  gap: 1.35rem;
  align-items: end;
}

.blog-intro-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  padding: 1.3rem 1.4rem;
}

.blog-intro-card-label {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--ink-600);
}

.blog-intro-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-700);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  border-radius: 1.35rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-sm);
}

.blog-card-image-link {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-image {
  transform: scale(1.03);
}

.blog-card-body {
  padding: 1.25rem 1.3rem 1.4rem;
}

.blog-card-meta,
.blog-post-meta,
.admin-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  color: var(--ink-500);
  font-size: 0.88rem;
}

.blog-card h2,
.admin-post-card h3 {
  margin: 0.6rem 0 0.55rem;
  line-height: 1.15;
}

.blog-card h2 a {
  color: var(--ink-950);
  text-decoration: none;
}

.blog-card h2 a:hover {
  color: var(--brand-strong);
}

.blog-card p {
  margin: 0 0 0.9rem;
  color: var(--ink-700);
}

.blog-empty {
  border: 1px dashed rgba(15, 23, 42, 0.18);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
}

.blog-preview-banner {
  padding-top: 6.5rem;
  background: linear-gradient(180deg, rgba(0, 191, 255, 0.12), rgba(255, 255, 255, 0));
}

.blog-preview-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 191, 255, 0.22);
  box-shadow: var(--shadow-sm);
  padding: 1rem 1.15rem;
}

.blog-preview-label {
  margin: 0 0 0.25rem;
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-post-shell {
  padding-top: 2.2rem;
}

.blog-post-container {
  width: min(92%, 860px);
  margin: 0 auto;
}

.blog-post-header h1 {
  margin: 0.8rem 0 0.9rem;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.blog-post-excerpt {
  margin: 0 0 1rem;
  color: var(--ink-700);
  font-size: 1.08rem;
}

.blog-post-cover {
  margin-top: 1.8rem;
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.blog-post-cover img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.blog-post-body {
  margin-top: 2rem;
  border-radius: 1.4rem;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1.6rem 1.65rem;
  box-shadow: var(--shadow-sm);
}

.blog-prose {
  color: var(--ink-900);
  font-size: 1.02rem;
}

.blog-prose > *:first-child {
  margin-top: 0;
}

.blog-prose > *:last-child {
  margin-bottom: 0;
}

.blog-prose h1,
.blog-prose h2,
.blog-prose h3,
.blog-prose h4,
.blog-prose h5,
.blog-prose h6 {
  margin: 1.7rem 0 0.75rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink-950);
}

.blog-prose h2 {
  font-size: 1.9rem;
}

.blog-prose h3 {
  font-size: 1.45rem;
}

.blog-prose p,
.blog-prose ul,
.blog-prose ol,
.blog-prose blockquote,
.blog-prose pre {
  margin: 0 0 1rem;
}

.blog-prose ul,
.blog-prose ol {
  padding-left: 1.2rem;
}

.blog-prose li + li {
  margin-top: 0.35rem;
}

.blog-prose a {
  color: var(--brand-strong);
}

.blog-prose code {
  border-radius: 0.45rem;
  background: var(--ink-100);
  padding: 0.15rem 0.35rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.92em;
}

.blog-prose pre {
  overflow-x: auto;
  border-radius: 1rem;
  background: var(--ink-950);
  color: #e5f0ff;
  padding: 1rem 1.1rem;
}

.blog-prose pre code {
  display: block;
  background: transparent;
  color: inherit;
  padding: 0;
}

.blog-prose blockquote {
  border-left: 4px solid rgba(0, 191, 255, 0.45);
  background: rgba(0, 191, 255, 0.06);
  padding: 0.95rem 1rem;
  color: var(--ink-700);
}

.blog-prose hr {
  border: 0;
  border-top: 1px solid var(--ink-200);
  margin: 1.7rem 0;
}

.blog-prose img {
  margin: 1.2rem 0;
  border-radius: 1rem;
}

.admin-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(0, 191, 255, 0.12), transparent 22%),
    linear-gradient(180deg, #0b1324 0%, #111827 24%, #f5f8fc 24%, #f5f8fc 100%);
}

.admin-topbar {
  padding: 1.2rem 0;
}

.admin-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.admin-brand .brand-text {
  color: #fff;
}

.admin-nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.admin-nav a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 600;
}

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

.admin-logout-form {
  margin: 0;
}

.admin-main {
  padding: 1rem 0 3rem;
}

.admin-page-shell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-auth-shell {
  display: flex;
  justify-content: center;
  padding: 2rem 0 3rem;
}

.admin-auth-card,
.admin-panel,
.admin-editor-main,
.admin-editor-sidebar .admin-side-card {
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-sm);
}

.admin-auth-card {
  width: min(100%, 560px);
  padding: 1.6rem;
}

.admin-auth-copy {
  color: var(--ink-700);
}

.admin-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-form label {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
  color: var(--ink-800);
  font-size: 0.94rem;
  font-weight: 600;
}

.admin-form input,
.admin-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.14);
  border-radius: 0.95rem;
  background: #fff;
  padding: 0.86rem 0.95rem;
  color: var(--ink-900);
  font: inherit;
}

.admin-form input:focus,
.admin-form textarea:focus {
  outline: 2px solid rgba(0, 191, 255, 0.22);
  border-color: rgba(0, 191, 255, 0.38);
}

.admin-markdown-input {
  min-height: 420px;
  resize: vertical;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  line-height: 1.55;
}

.admin-alert {
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  font-weight: 600;
}

.admin-alert-success {
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.16);
  color: #166534;
}

.admin-alert-error {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.16);
  color: #991b1b;
}

.admin-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.2rem;
  color: #fff;
}

.admin-hero h1 {
  margin: 0.25rem 0 0.55rem;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.admin-stat-card {
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow-sm);
}

.admin-stat-card strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 2rem;
  line-height: 1;
  color: var(--ink-950);
}

.admin-stat-label {
  color: var(--ink-600);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-panel {
  padding: 1.35rem;
}

.admin-panel-head,
.admin-editor-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.admin-panel-head h2,
.admin-side-card h2 {
  margin: 0.3rem 0 0;
}

.admin-post-list {
  display: grid;
  gap: 0.95rem;
  margin-top: 1rem;
}

.admin-post-card {
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 1.1rem;
  background: #fff;
  padding: 1rem 1.05rem;
}

.admin-post-card-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.8rem;
}

.admin-post-slug {
  margin: 0.3rem 0 0;
  color: var(--ink-500);
  font-size: 0.9rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.4rem 0.72rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-draft {
  background: rgba(217, 119, 6, 0.12);
  color: #92400e;
}

.status-published {
  background: rgba(22, 163, 74, 0.12);
  color: #166534;
}

.status-archived {
  background: rgba(71, 85, 105, 0.12);
  color: var(--ink-700);
}

.admin-post-actions,
.admin-editor-actions,
.admin-side-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.admin-empty-state {
  margin-top: 1rem;
  border-radius: 1.1rem;
  border: 1px dashed rgba(15, 23, 42, 0.18);
  padding: 1.7rem;
  text-align: center;
}

.admin-editor-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(260px, 0.8fr);
  gap: 1rem;
}

.admin-editor-main {
  padding: 1.35rem;
}

.admin-editor-head h1 {
  margin: 0.35rem 0 0;
}

.admin-editor-head-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
  color: var(--ink-600);
  font-size: 0.88rem;
}

.admin-form-grid {
  display: grid;
  gap: 1rem;
}

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

.admin-editor-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.admin-side-card {
  padding: 1.2rem;
}

.admin-side-card ul,
.admin-side-card ol {
  margin: 0.85rem 0 0;
  padding-left: 1.15rem;
  color: var(--ink-700);
}

.admin-side-card li + li {
  margin-top: 0.45rem;
}

@media (max-width: 980px) {
  .blog-intro-grid,
  .admin-editor-shell {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .blog-preview-banner {
    padding-top: 5.7rem;
  }

  .blog-preview-banner-inner,
  .admin-topbar-inner,
  .admin-panel-head,
  .admin-editor-head,
  .admin-hero,
  .admin-post-card-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-post-body,
  .admin-panel,
  .admin-editor-main,
  .admin-auth-card {
    padding: 1.15rem;
  }

  .blog-post-container {
    width: min(94%, 860px);
  }

  .admin-nav {
    width: 100%;
  }

  .admin-nav .btn {
    width: 100%;
  }

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