:root {
  color-scheme: light;
  --ink: #102a43;
  --ink-2: #182f45;
  --muted: #5f6f82;
  --line: rgba(255, 255, 255, 0.58);
  --paper: rgba(255, 255, 255, 0.74);
  --soft: #f7f9fc;
  --pink: #ee256b;
  --pink-dark: #c91858;
  --pink-soft: rgba(238, 37, 107, 0.12);
  --blue: #2f80ed;
  --coral: #f26b5e;
  --gold: #f2b84b;
  --glass: rgba(255, 255, 255, 0.68);
  --glass-strong: rgba(255, 255, 255, 0.82);
  --glass-dark: rgba(16, 42, 67, 0.58);
  --shadow: 0 24px 80px rgba(16, 42, 67, 0.15);
  --shadow-lg: 0 34px 110px rgba(16, 42, 67, 0.22);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(238, 37, 107, 0.08) 0%, rgba(255, 255, 255, 0) 28%),
    linear-gradient(225deg, rgba(16, 42, 67, 0.08) 0%, rgba(255, 255, 255, 0) 36%),
    var(--soft);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(0, 0, 0, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}

.nav,
.section,
.metrics {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  border-radius: 8px;
}

.brand .brand-logo {
  width: 150px;
  height: auto;
  max-height: 46px;
  object-fit: contain;
  border-radius: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 760;
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  padding: 0;
  font-weight: 760;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.42rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.65rem);
  z-index: 30;
  min-width: 190px;
  display: grid;
  gap: 0.35rem;
  padding: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  color: rgba(16, 42, 67, 0.82);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  backdrop-filter: blur(22px) saturate(155%);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.64rem 0.72rem;
  border-radius: var(--radius);
}

.nav-dropdown-menu a:hover {
  background: rgba(238, 37, 107, 0.1);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ee256b 0%, #d91d63 100%);
  color: #fff;
  padding: 0.75rem 1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(238, 37, 107, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  background: linear-gradient(135deg, #f13b7b 0%, var(--pink-dark) 100%);
  box-shadow: 0 20px 44px rgba(238, 37, 107, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  transform: translateY(-1px);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 32px rgba(16, 42, 67, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.88);
}

.button-glass {
  border: 1px solid rgba(255, 214, 0, 0.72);
  background:
    linear-gradient(135deg, #ffe45c 0%, #ffd400 48%, #ffbd00 100%),
    #ffd400;
  color: #1f1a00;
  box-shadow: 0 16px 34px rgba(255, 189, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.button-glass:hover {
  background:
    linear-gradient(135deg, #fff06f 0%, #ffdc1c 48%, #ffc400 100%),
    #ffdc1c;
  box-shadow: 0 20px 44px rgba(255, 189, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.button-small {
  min-height: 40px;
  padding: 0.55rem 0.85rem;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  min-height: clamp(720px, 88vh, 860px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 84%, rgba(238, 37, 107, 0.18), transparent 34%),
    #000;
  isolation: isolate;
  --hero-x: 50%;
  --hero-y: 42%;
}

.hero-media {
  position: absolute;
  inset: clamp(84px, 12vh, 132px) max(0px, calc((100vw - 1360px) / 2)) clamp(86px, 12vh, 128px);
  transform: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.92) 13%, rgba(0, 0, 0, 0.1) 46%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0) 56%, #000 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.05);
}

.hero-cinema {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1360px;
  margin: 0 auto;
}

.hero-film {
  min-height: 100%;
  overflow: hidden;
}

.hero-film img {
  transition: transform 900ms ease, filter 900ms ease;
}

.hero-film:nth-child(odd) img {
  filter: saturate(0.9) contrast(1.04) brightness(0.78);
}

.hero-film-wide img {
  object-position: center;
}

.hero-film-muted {
  opacity: 0.72;
}

.hero:hover .hero-film img {
  transform: scale(1.035);
}

.hero-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 36%, rgba(238, 37, 107, 0.18), transparent 26%),
    radial-gradient(circle at 84% 82%, rgba(238, 37, 107, 0.1), transparent 36%),
    linear-gradient(180deg, transparent 0 58%, rgba(0, 0, 0, 0.76) 100%);
  mix-blend-mode: screen;
  opacity: 0.88;
  pointer-events: none;
  animation: auroraDrift 9s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(92px, 13vh, 128px) 0 clamp(76px, 9vh, 104px);
  color: #fff;
}

.hero-content::before {
  content: none;
}

.hero-content > * {
  position: relative;
}

.hero-luxury-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.46fr);
  gap: clamp(1.4rem, 4vw, 4.8rem);
  align-items: end;
}

.hero-copy-panel {
  max-width: 820px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 8px 28px rgba(238, 37, 107, 0.18);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(2.45rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero p:not(.eyebrow),
.page-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.86);
}

.hero-luxury h1 {
  max-width: 850px;
  display: grid;
  gap: 0.05em;
  font-size: clamp(3.45rem, 6.7vw, 7rem);
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-luxury h1 span {
  display: block;
  color: transparent;
  -webkit-text-stroke: clamp(1px, 0.11vw, 2px) rgba(255, 255, 255, 0.95);
  text-shadow: 0 24px 80px rgba(0, 0, 0, 0.58);
}

.hero-luxury h1 span:nth-child(2) {
  color: #fff;
  -webkit-text-stroke: 0;
}

.hero-luxury h1 span:nth-child(3) {
  max-width: 780px;
}

.hero-copy-panel p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 1.25rem;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.hero-actions .button {
  min-width: 138px;
  min-height: 52px;
}

.hero-actions .button-secondary {
  color: #fff;
  border-color: rgba(238, 37, 107, 0.75);
  background: rgba(0, 0, 0, 0.22);
  box-shadow: inset 0 0 0 1px rgba(238, 37, 107, 0.34), 0 18px 44px rgba(0, 0, 0, 0.28);
}

.hero-boroughs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.hero-boroughs span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0.42rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 850;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-command {
  position: relative;
  width: min(420px, 100%);
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  justify-self: end;
  margin-top: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
  overflow: visible;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-command::before {
  content: none;
}

.hero-command::after {
  content: none;
}

.hero-command-card {
  position: relative;
  display: grid;
  gap: 0.32rem;
  min-height: 106px;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.hero-command-card span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-command-card strong {
  font-size: clamp(1.16rem, 2vw, 1.75rem);
  line-height: 1;
}

.hero-command-card p {
  max-width: 250px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.hero-command-main {
  grid-column: span 2;
  min-height: 116px;
  background: linear-gradient(135deg, rgba(238, 37, 107, 0.86), rgba(16, 42, 67, 0.66));
}

.hero-command-top {
  left: auto;
  top: auto;
}

.hero-command-side {
  right: auto;
  top: auto;
}

.hero-command-bottom {
  left: auto;
  bottom: auto;
}

@keyframes auroraDrift {
  from {
    transform: translate3d(-1.5%, -1%, 0) scale(1);
  }

  to {
    transform: translate3d(1.5%, 1%, 0) scale(1.04);
  }
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  transform: translateY(-44px);
}

.proof-rail {
  grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
  align-items: stretch;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(155%);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
}

.proof-copy {
  display: grid;
  align-content: center;
  padding: 0.5rem 0.75rem;
}

.proof-copy h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.3rem);
}

.metrics article,
.feature-card,
.job-card,
.form-panel,
.portal-panel,
.insight-card,
.step-card,
.steps li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 54px rgba(16, 42, 67, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(22px) saturate(155%);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
}

.metrics article {
  padding: 1.25rem;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.82);
}

.metrics strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.metrics span {
  color: var(--muted);
}

.section {
  padding: 70px 0;
  position: relative;
}

.split,
.contact,
.portal-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

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

h3 {
  margin: 0 0 0.5rem;
  line-height: 1.15;
}

p {
  color: var(--muted);
}

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

.feature-card,
.portal-panel,
.insight-card,
.job-card,
.step-card {
  padding: 1.25rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  transform-style: preserve-3d;
}

.feature-card {
  min-height: 208px;
  overflow: hidden;
}

.feature-card:hover,
.job-card:hover,
.insight-card:hover {
  border-color: rgba(238, 37, 107, 0.28);
  background: var(--glass-strong);
  box-shadow: 0 26px 70px rgba(16, 42, 67, 0.16), 0 10px 28px rgba(238, 37, 107, 0.1);
  transform: translateY(-3px);
}

.glass-tilt {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --lift: 0px;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(var(--lift));
}

.glass-tilt:hover {
  --lift: -3px;
}

.card-image {
  width: calc(100% + 2.5rem);
  height: 148px;
  margin: -1.25rem -1.25rem 1.1rem;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02);
}

.immersive {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.immersive-copy {
  max-width: 520px;
}

.image-stack {
  min-height: 540px;
  position: relative;
}

.image-card {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.36);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
  transition: transform 500ms ease, filter 500ms ease;
}

.image-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.12) contrast(1.04);
}

.image-card-large {
  width: 76%;
  height: 430px;
}

.image-card-small {
  position: absolute;
  right: 0;
  top: 58px;
  width: 42%;
  height: 220px;
}

.image-card-offset {
  top: auto;
  bottom: 22px;
  right: 10%;
  width: 48%;
  height: 238px;
}

.flow-system {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding-top: 38px;
}

.flow-system-copy {
  max-width: 520px;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(155%);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
}

.about-copy p {
  margin: 0;
}

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

.value-card {
  min-height: 300px;
  display: grid;
  align-content: end;
  gap: 0.75rem;
  padding: clamp(1.1rem, 2vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.52)),
    linear-gradient(135deg, rgba(238, 37, 107, 0.09), rgba(47, 128, 237, 0.05));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(155%);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
}

.value-card span {
  color: var(--pink);
  font-weight: 900;
}

.value-card h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
}

.value-card p {
  margin: 0;
}

.founder-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: center;
}

.founder-copy {
  display: grid;
  gap: 1rem;
}

.founder-copy p {
  margin: 0;
}

.flow-map {
  min-height: 460px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-content: center;
  padding: clamp(1rem, 2vw, 1.5rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(16, 42, 67, 0.94), rgba(8, 20, 33, 0.9)),
    url("/assets/home-workflow-dashboard.jpg") center / cover;
  box-shadow: var(--shadow-lg);
  color: #fff;
}

.flow-map::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  transform: rotate(-8deg);
}

.flow-map span,
.flow-map strong {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 96px;
  padding: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
  text-align: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.flow-map strong {
  grid-column: 2;
  grid-row: 2;
  min-height: 124px;
  background: rgba(238, 37, 107, 0.9);
  color: #fff;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  box-shadow: 0 22px 54px rgba(238, 37, 107, 0.24);
}

.portal-visual {
  display: grid;
  gap: 1rem;
}

.portal-visual > .image-card {
  height: 330px;
}

.icon {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--pink-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.band {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100vw - 1160px) / 2));
  padding-right: max(16px, calc((100vw - 1160px) / 2));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.42)),
    linear-gradient(135deg, rgba(238, 37, 107, 0.08), rgba(47, 128, 237, 0.05));
  border-top: 1px solid rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 1.5rem;
}

.industry-flow {
  padding-top: 52px;
}

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

.industry-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(5, 12, 22, 0.08) 0%, rgba(5, 12, 22, 0.38) 42%, rgba(5, 12, 22, 0.9) 100%),
    var(--industry-image) center / cover;
  box-shadow: 0 28px 90px rgba(16, 42, 67, 0.2);
  color: #fff;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.industry-card::before,
.industry-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.industry-card::before {
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(238, 37, 107, 0.18), rgba(47, 128, 237, 0.1)),
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.34), transparent 34%);
  mix-blend-mode: screen;
}

.industry-card::after {
  z-index: 0;
  background: linear-gradient(180deg, transparent 0 35%, rgba(5, 12, 22, 0.72) 72%, rgba(5, 12, 22, 0.94) 100%);
}

.industry-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.01);
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 37, 107, 0.42);
  box-shadow: 0 30px 90px rgba(16, 42, 67, 0.2), 0 12px 30px rgba(238, 37, 107, 0.12);
}

.industry-card span,
.industry-card strong {
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.48);
}

.industry-card span {
  width: max-content;
  max-width: 100%;
  padding: 0.42rem 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(7, 17, 29, 0.42);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.industry-card strong {
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  line-height: 1.1;
  color: #fff;
}

.job-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.job-list.compact .job-card:nth-child(n + 4) {
  display: none;
}

.job-card {
  display: grid;
  gap: 0.9rem;
}

.job-details {
  padding: 0.8rem;
  border: 1px solid rgba(238, 37, 107, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
}

.job-details summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.job-details p {
  margin: 0.7rem 0;
}

.job-details ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.job-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

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

.trust-proof,
.testimonials,
.employer-proof,
.candidate-proof,
.faq-section {
  padding-top: 52px;
}

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

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

.testimonial-carousel {
  position: relative;
  --carousel-progress: 0%;
}

.testimonial-carousel::before,
.testimonial-carousel::after {
  position: absolute;
  top: 0;
  bottom: 42px;
  z-index: 2;
  width: min(76px, 10vw);
  pointer-events: none;
  content: "";
}

.testimonial-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--wash), rgba(244, 248, 252, 0));
}

.testimonial-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--wash), rgba(244, 248, 252, 0));
}

.testimonial-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.15rem 0.1rem 1.2rem;
  scroll-behavior: smooth;
  scroll-padding: 0.1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.testimonial-grid.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.testimonial-grid::-webkit-scrollbar {
  display: none;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 34, 56, 0.22);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.carousel-dot.is-active {
  width: 28px;
  background: var(--pink);
}

.carousel-progress {
  height: 4px;
  margin: 0.15rem auto 0;
  max-width: 420px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(15, 34, 56, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.carousel-progress span {
  display: block;
  width: var(--carousel-progress);
  height: 100%;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(237, 27, 109, 0.38), var(--pink)),
    var(--pink);
  box-shadow: 0 0 24px rgba(237, 27, 109, 0.42);
}

.testimonial-carousel.is-paused .carousel-progress span {
  opacity: 0.45;
}

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

.proof-card,
.testimonial-card,
.faq-card {
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.56)),
    rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(155%);
  -webkit-backdrop-filter: blur(22px) saturate(155%);
}

.proof-card {
  min-height: 240px;
  display: grid;
  align-content: end;
  gap: 0.7rem;
}

.proof-card span {
  color: var(--pink);
  font-weight: 950;
  text-transform: uppercase;
}

.proof-card h3,
.faq-card summary {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
}

.proof-card p,
.testimonial-card blockquote,
.testimonial-card figcaption,
.faq-card p {
  margin: 0;
  color: var(--muted);
}

.testimonial-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-height: 250px;
  margin: 0;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  scroll-snap-align: start;
  transform: translateY(0) scale(0.975);
  opacity: 0.76;
  transition: transform 220ms ease, opacity 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  will-change: transform;
}

.testimonial-card.is-active {
  border-color: rgba(237, 27, 109, 0.3);
  box-shadow: 0 28px 72px rgba(15, 34, 56, 0.15), 0 18px 46px rgba(237, 27, 109, 0.11);
  opacity: 1;
  transform: translateY(-6px) scale(1);
}

.testimonial-card:hover {
  opacity: 1;
  transform: translateY(-5px) scale(1);
}

.testimonial-card blockquote {
  font-size: clamp(1.04rem, 1.9vw, 1.28rem);
  line-height: 1.42;
}

.testimonial-card figcaption {
  font-weight: 900;
}

.faq-card {
  display: grid;
  gap: 0.75rem;
}

.faq-card summary {
  cursor: pointer;
}

.job-meta,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(238, 37, 107, 0.1);
  color: #8e153f;
  border: 1px solid rgba(238, 37, 107, 0.14);
  font-size: 0.82rem;
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  min-height: 230px;
  padding: 1.4rem;
}

.steps span {
  color: var(--pink);
  font-weight: 900;
}

.form-panel {
  display: grid;
  gap: 1rem;
  padding: 1.3rem;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.78);
}

.contact-showcase {
  align-items: stretch;
}

.contact-form-card {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.contact-hours-card a {
  color: var(--pink);
  font-weight: 900;
}

.contact-hours-card a:hover {
  color: var(--pink-dark);
}

.contact-form-card h2,
.contact-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

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

.contact-card {
  overflow: hidden;
  min-height: 100%;
  background:
    linear-gradient(160deg, rgba(16, 42, 67, 0.82), rgba(16, 42, 67, 0.56)),
    rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  color: #fff;
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
}

.contact-card-media {
  height: 260px;
  overflow: hidden;
}

.contact-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transition: transform 600ms ease;
}

.contact-card:hover .contact-card-media img {
  transform: scale(1.04);
}

.contact-card-body {
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.contact-card p,
.contact-card .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.contact-lines {
  display: grid;
  gap: 0.75rem;
}

.contact-lines a,
.contact-lines div {
  display: grid;
  gap: 0.15rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.contact-lines span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: var(--radius);
  padding: 0.78rem 0.85rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 10px 24px rgba(16, 42, 67, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(238, 37, 107, 0.16);
  border-color: rgba(238, 37, 107, 0.5);
}

.hidden {
  display: none;
}

.site-footer {
  position: relative;
  width: 100%;
  margin-top: clamp(64px, 8vw, 110px);
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 0%, rgba(238, 37, 107, 0.34), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(47, 128, 237, 0.16), transparent 30%),
    linear-gradient(135deg, #07111d 0%, #102a43 48%, #070d16 100%);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 -34px 100px rgba(16, 42, 67, 0.18);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 16%, rgba(255, 255, 255, 0.08) 17%, transparent 24% 100%),
    radial-gradient(circle at 52% 0%, rgba(255, 255, 255, 0.16), transparent 26%);
  pointer-events: none;
  opacity: 0.78;
}

.footer-shell {
  position: relative;
  z-index: 1;
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.65rem);
  padding: clamp(1.8rem, 4vw, 3.6rem) 0 clamp(1rem, 2.4vw, 1.6rem);
}

.footer-topline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 3vw, 2.4rem);
  align-items: center;
  padding-bottom: clamp(1rem, 2.3vw, 1.45rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-intro {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(0.9rem, 2vw, 1.25rem);
  align-items: center;
  max-width: none;
}

.footer-intro p {
  max-width: 780px;
  margin: 0;
  font-size: clamp(0.95rem, 1.4vw, 1.08rem);
  line-height: 1.45;
}

.footer-intro p,
.footer-column a,
.footer-contact a,
.footer-contact span,
.footer-contact div,
.footer-bottom,
.newsletter small {
  color: rgba(255, 255, 255, 0.72);
}

.footer-intro .brand-logo {
  filter: drop-shadow(0 12px 24px rgba(238, 37, 107, 0.16));
}

.footer-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.35rem);
  align-items: start;
}

.footer-sitemap {
  display: grid;
  grid-template-columns: repeat(6, minmax(104px, 1fr));
  gap: clamp(0.55rem, 1.1vw, 0.95rem);
}

.footer-column,
.footer-contact,
.newsletter {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 0.34rem;
}

.footer-column h2,
.footer-contact h2,
.newsletter label {
  margin: 0;
  color: #fff;
  font-size: clamp(0.64rem, 0.72vw, 0.74rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.footer-column a,
.footer-contact a {
  width: fit-content;
  max-width: 100%;
  font-size: clamp(0.78rem, 0.86vw, 0.9rem);
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-column a {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
}

.footer-contact a {
  min-height: 30px;
}

.footer-column a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-contact {
  grid-template-columns:
    minmax(110px, 0.55fr)
    minmax(130px, 0.68fr)
    minmax(215px, 1fr)
    minmax(150px, 0.78fr)
    minmax(210px, auto)
    minmax(260px, 1fr);
  align-items: center;
  gap: 0.75rem clamp(0.85rem, 1.7vw, 1.2rem);
  padding: clamp(0.85rem, 1.6vw, 1.1rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 90px rgba(7, 17, 29, 0.24);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.footer-contact h2,
.footer-social {
  grid-column: auto;
}

.footer-contact h2 {
  max-width: 8rem;
}

.footer-contact a,
.footer-contact div {
  width: 100%;
}

.footer-contact span {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  padding-top: 0;
}

.footer-social a {
  --social-bg: rgba(255, 255, 255, 0.08);
  --social-fg: #fff;
  --social-border: rgba(255, 255, 255, 0.2);
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--social-border);
  border-radius: 999px;
  color: var(--social-fg);
  background: var(--social-bg);
  box-shadow: 0 16px 34px rgba(7, 17, 29, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: var(--social-border);
  color: var(--social-fg);
  background: var(--social-bg);
  filter: saturate(1.08) brightness(1.04);
  transform: translateY(-2px);
}

.footer-social a:focus-visible {
  outline: 2px solid var(--social-border);
  outline-offset: 3px;
}

.footer-social a[aria-label*="LinkedIn"] {
  --social-bg: #0a66c2;
  --social-border: #0a66c2;
}

.footer-social a[aria-label*=" X"] {
  --social-bg: #000;
  --social-border: #000;
}

.footer-social a[aria-label*="Facebook"] {
  --social-bg: #1877f2;
  --social-border: #1877f2;
}

.footer-social a[aria-label*="Instagram"] {
  --social-bg: linear-gradient(135deg, #f58529 0%, #dd2a7b 42%, #8134af 72%, #515bd4 100%);
  --social-border: #dd2a7b;
}

.footer-social a[aria-label*="TikTok"] {
  --social-bg: #010101;
  --social-border: #25f4ee;
  box-shadow:
    inset 2px 0 0 #25f4ee,
    inset -2px 0 0 #fe2c55,
    0 16px 34px rgba(7, 17, 29, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.footer-social span {
  font-size: 0.86rem;
  line-height: 1;
  text-transform: none;
}

.footer-newsletter {
  margin-top: 0;
  padding-left: clamp(0.85rem, 1.6vw, 1.1rem);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.newsletter div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  padding-top: clamp(1rem, 2vw, 1.4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.86rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.legal-hero {
  --hero-image: url("/assets/legal-compliance-hero.jpg");
}

.legal-quicklinks {
  align-content: center;
}

.legal-quicklinks a {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
}

.not-found-hero .premium-hero-panel a,
.legal-quicklinks a:hover {
  color: #fff;
}

.not-found-hero .premium-hero-panel a {
  font-weight: 850;
}

.legal-overview {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: start;
}

.legal-overview p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  max-width: 980px;
  margin-inline: auto;
}

.legal-card {
  padding: clamp(1rem, 2.4vw, 1.45rem);
  border: 1px solid rgba(16, 42, 67, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-sm);
}

.legal-card.legal-updated {
  border-color: rgba(238, 37, 107, 0.24);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78)),
    rgba(238, 37, 107, 0.08);
}

.legal-card h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
}

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

.page-hero {
  background:
    linear-gradient(135deg, rgba(238, 37, 107, 0.22), rgba(16, 42, 67, 0.22)),
    var(--ink);
  color: #fff;
  padding: 88px 0 74px;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.page-hero-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  max-width: 880px;
  position: relative;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
}

.split-hero {
  padding: 56px 0;
}

.split-hero .page-hero-inner {
  max-width: 1160px;
  padding: clamp(1rem, 2vw, 1.35rem);
}

.split-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.74fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
}

.split-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1;
}

.split-hero p:not(.eyebrow) {
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.split-hero-copy {
  min-width: 0;
}

.split-hero-media {
  position: relative;
  min-height: 300px;
  max-height: 360px;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.split-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(238, 37, 107, 0.16), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(16, 42, 67, 0), rgba(16, 42, 67, 0.28));
  pointer-events: none;
}

.split-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
  transition: transform 600ms ease, filter 600ms ease;
}

.split-hero-media:hover img {
  transform: scale(1.035);
  filter: saturate(1.14) contrast(1.04);
}

.services-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: grid;
  align-items: end;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(8, 20, 33, 0.92), rgba(16, 42, 67, 0.62)),
    url("/assets/services-hero-industries.jpg") center / cover;
}

.premium-hero {
  min-height: clamp(520px, 70vh, 680px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8, 20, 33, 0.92) 0%, rgba(16, 42, 67, 0.7) 47%, rgba(8, 20, 33, 0.34) 100%),
    radial-gradient(circle at 22% 28%, rgba(238, 37, 107, 0.24), transparent 34%),
    var(--hero-image) center / cover;
  isolation: isolate;
}

.premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(8, 20, 33, 0.18), rgba(8, 20, 33, 0.62)),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.16), transparent 28%);
  pointer-events: none;
}

.services-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(238, 37, 107, 0.16), rgba(16, 42, 67, 0.34));
}

.services-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 110px 0 72px;
  max-width: 920px;
}

.services-hero h1 {
  margin: 0;
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.services-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
  font-size: 1.12rem;
}

.premium-hero-inner {
  width: min(1160px, calc(100% - 32px));
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(270px, 0.56fr);
  gap: clamp(1.25rem, 4vw, 3.5rem);
  align-items: end;
  padding: clamp(78px, 10vw, 112px) 0 clamp(52px, 7vw, 72px);
}

.premium-hero-copy {
  max-width: 820px;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  box-shadow: 0 30px 100px rgba(8, 20, 33, 0.34);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
}

.premium-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(2.65rem, 5vw, 4.6rem);
  line-height: 0.98;
}

.premium-hero-copy p:not(.eyebrow) {
  font-size: clamp(1.06rem, 1.8vw, 1.25rem);
  line-height: 1.7;
}

.premium-hero-copy .hero-actions {
  margin-top: 1.35rem;
}

.premium-hero-panel {
  align-self: stretch;
  min-height: 330px;
  display: grid;
  align-content: end;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
    linear-gradient(135deg, rgba(238, 37, 107, 0.18), rgba(16, 42, 67, 0.06));
  box-shadow: 0 34px 100px rgba(8, 20, 33, 0.32);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
}

.premium-hero-panel span,
.premium-hero-panel strong {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 38px;
  align-items: center;
  padding: 0.55rem 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
}

.premium-hero-panel strong {
  width: 100%;
  min-height: 58px;
  justify-content: center;
  border-radius: var(--radius);
  background: rgba(238, 37, 107, 0.88);
  color: #fff;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  box-shadow: 0 18px 44px rgba(238, 37, 107, 0.22);
}

.services-board {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 24px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.service-panel {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(180deg, rgba(16, 42, 67, 0.08) 0%, rgba(16, 42, 67, 0.48) 48%, rgba(8, 20, 33, 0.9) 100%),
    var(--service-image);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  isolation: isolate;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-panel:nth-child(1),
.service-panel:nth-child(2),
.service-panel:nth-child(3) {
  grid-column: span 2;
}

.service-panel:nth-child(4),
.service-panel:nth-child(5) {
  grid-column: span 3;
}

.service-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(238, 37, 107, 0.26), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 300ms ease;
}

.service-panel:hover,
.service-panel:focus-within {
  transform: translateY(-4px);
  border-color: rgba(238, 37, 107, 0.38);
  box-shadow: 0 30px 90px rgba(16, 42, 67, 0.22), 0 12px 32px rgba(238, 37, 107, 0.1);
}

.service-panel:hover::before,
.service-panel:focus-within::before {
  opacity: 1;
}

.service-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0.4rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.service-panel-content {
  display: grid;
  gap: 0.9rem;
  width: 100%;
  padding: clamp(1rem, 2vw, 1.7rem);
  background: linear-gradient(180deg, rgba(16, 42, 67, 0), rgba(16, 42, 67, 0.36));
}

.service-panel h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.8vw, 2.5rem);
  line-height: 1;
  color: #fff;
}

.service-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.service-link {
  width: max-content;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.62rem 0.86rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-weight: 900;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.service-link:hover {
  background: var(--pink);
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.page-hero p {
  max-width: 720px;
}

.filters {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.25rem;
}

.portal-panel {
  display: grid;
  gap: 0.8rem;
}

.portal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

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

.callout {
  background: linear-gradient(135deg, rgba(16, 42, 67, 0.9), rgba(35, 54, 74, 0.84));
  color: #fff;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.callout p {
  color: rgba(255, 255, 255, 0.78);
}

.empty-state {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

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

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: var(--radius);
    padding: 1rem;
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px) saturate(150%);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    color: rgba(16, 42, 67, 0.82);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-dropdown,
  .nav-dropdown-toggle,
  .nav-dropdown-menu {
    width: 100%;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
    color: rgba(16, 42, 67, 0.82);
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    margin-top: 0.45rem;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media {
    inset: 78px 0 64px;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.44) 58%, rgba(0, 0, 0, 0.72) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.08) 50%, #000 100%);
  }

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

  .hero-film:nth-child(n + 4) {
    display: none;
  }

  .hero-luxury-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-top: 86px;
  }

  .hero-copy-panel {
    max-width: none;
  }

  .hero-command {
    width: 100%;
  }

  .hero-command-main {
    min-height: 112px;
  }

  .hero-command-top,
  .hero-command-side,
  .hero-command-bottom {
    max-width: none;
  }

  .metrics,
  .split,
  .contact,
  .portal-layout,
  .immersive,
  .flow-system,
  .about-story,
  .founder-story,
  .value-grid,
  .job-list,
  .job-detail-layout,
  .steps,
  .resource-grid,
  .insight-grid,
  .industry-grid,
  .proof-grid,
  .testimonial-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .proof-rail {
    grid-template-columns: 1fr;
    transform: translateY(-28px);
  }

  .flow-map {
    min-height: 0;
  }

  .footer-topline,
  .footer-grid,
  .legal-overview,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .footer-sitemap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-column {
    gap: 0.56rem;
  }

  .footer-column a {
    min-height: 30px;
  }

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

  .footer-contact h2,
  .footer-social,
  .footer-newsletter {
    grid-column: 1 / -1;
    max-width: none;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-newsletter {
    padding-top: 1rem;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

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

  .testimonial-card {
    flex-basis: calc((100% - 1rem) / 2);
  }

  .footer-cta {
    justify-content: flex-start;
  }

  .feature-grid,
  .filters,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .industry-card {
    min-height: 260px;
  }

  .image-stack {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .image-card-large,
  .image-card-small,
  .image-card-offset {
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 11;
  }

  .metrics {
    transform: none;
    padding-top: 24px;
  }

  .hero-content::before {
    inset: 54px 0 64px;
    width: 100%;
  }

  .premium-hero {
    min-height: 680px;
    background:
      linear-gradient(180deg, rgba(8, 20, 33, 0.9) 0%, rgba(16, 42, 67, 0.78) 58%, rgba(8, 20, 33, 0.56) 100%),
      radial-gradient(circle at 22% 18%, rgba(238, 37, 107, 0.22), transparent 34%),
      var(--hero-image) center / cover;
  }

  .premium-hero-inner {
    grid-template-columns: 1fr;
    align-items: end;
    padding: 92px 0 58px;
  }

  .premium-hero-panel {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
  }

  .premium-hero-panel span,
  .premium-hero-panel strong {
    width: 100%;
  }

  .premium-hero-panel strong {
    grid-column: 1 / -1;
  }

  .split-hero {
    padding: 44px 0;
  }

  .split-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(210px, 0.78fr);
    gap: 1rem;
  }

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

  .services-board {
    display: grid;
    min-height: 0;
    gap: 1rem;
    padding: 50px 0 20px;
    grid-template-columns: 1fr;
  }

  .service-panel {
    min-height: 360px;
    grid-column: auto;
  }

  .service-panel:nth-child(1),
  .service-panel:nth-child(2),
  .service-panel:nth-child(3),
  .service-panel:nth-child(4),
  .service-panel:nth-child(5) {
    grid-column: auto;
  }

  .service-cta {
    display: grid;
  }
}

@media (max-width: 1120px) and (min-width: 861px) {
  .footer-sitemap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .testimonial-carousel::before,
  .testimonial-carousel::after {
    display: none;
  }

  .testimonial-card {
    flex-basis: 88%;
  }

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

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

  .premium-hero {
    min-height: 620px;
  }

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

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

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

  .hero-content {
    padding: 86px 0 64px;
  }

  .hero h1,
  .page-hero h1,
  .premium-hero h1 {
    font-size: 2.45rem;
  }

  .hero-luxury h1 {
    font-size: clamp(2.65rem, 12.4vw, 3.45rem);
  }

  .hero-copy-panel {
    padding: 0;
  }

  .hero-copy-panel p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.55;
  }

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

  .hero-luxury .hero-actions {
    display: flex;
  }

  .hero-luxury .hero-actions .button {
    min-height: 42px;
    padding: 0.64rem 0.78rem;
  }

  .hero-boroughs {
    gap: 0.4rem;
  }

  .hero-boroughs span {
    min-height: 30px;
    padding: 0.34rem 0.54rem;
    font-size: 0.72rem;
  }

  .hero-boroughs span:nth-child(n + 4) {
    display: none;
  }

  .hero-command {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
  }

  .hero-command-card {
    min-height: 82px;
    padding: 0.68rem;
  }

  .hero-command-main {
    grid-column: span 2;
    width: auto;
    min-height: 104px;
  }

  .hero-command-top,
  .hero-command-side,
  .hero-command-bottom {
    max-width: none;
  }

  .hero-actions,
  .portal-actions,
  .newsletter div {
    display: grid;
    grid-template-columns: 1fr;
  }

  .premium-hero {
    min-height: 600px;
  }

  .premium-hero-inner {
    padding: 72px 0 42px;
  }

  .premium-hero-copy p:not(.eyebrow) {
    line-height: 1.55;
  }

  .premium-hero-copy .hero-actions {
    display: flex;
  }

  .premium-hero-copy {
    padding: 1rem;
  }

  .premium-hero-panel {
    min-height: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    padding: 0.75rem;
  }

  .premium-hero-panel span,
  .premium-hero-panel strong {
    width: auto;
    min-height: 32px;
    padding: 0.44rem 0.62rem;
    font-size: 0.82rem;
  }

  .premium-hero-panel strong {
    flex-basis: 100%;
    min-height: 42px;
  }

  .flow-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    padding: 0.75rem;
  }

  .flow-map strong {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 82px;
  }

  .flow-map span {
    min-height: 70px;
    padding: 0.65rem;
    font-size: 0.88rem;
  }

  .proof-rail {
    gap: 0.7rem;
    padding: 0.75rem;
  }

  .metrics article {
    padding: 1rem;
  }

  .proof-copy h2 {
    font-size: 1.6rem;
  }

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

  .section {
    padding: 50px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-aurora {
    animation: none;
  }

  .hero-media,
  .image-card img,
  .split-hero-media img,
  .contact-card-media img {
    transition: none;
  }
}

/* Paraform-inspired inner page system. Homepage intentionally excluded. */
.inner-page {
  background: #f3f6f2;
  color: #141614;
}

.inner-page .site-header {
  background: rgba(243, 246, 242, 0.9);
  border-bottom: 1px solid rgba(20, 22, 20, 0.08);
  box-shadow: none;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.inner-page .nav-links,
.inner-page .nav-dropdown-toggle {
  color: rgba(20, 22, 20, 0.72);
}

.inner-page .nav-links a:hover,
.inner-page .nav-dropdown-toggle:hover {
  color: #050605;
}

.inner-page .nav-dropdown-menu {
  border-color: rgba(20, 22, 20, 0.1);
  background: rgba(250, 252, 248, 0.92);
  box-shadow: 0 24px 70px rgba(20, 22, 20, 0.12);
}

.inner-page .nav-toggle {
  border-color: rgba(20, 22, 20, 0.12);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 34px rgba(20, 22, 20, 0.08);
}

.inner-page .nav-toggle span {
  background: #141614;
}

.inner-page .button {
  min-height: 42px;
  border: 1px solid #050605;
  border-radius: 999px;
  background: #050605;
  color: #fff;
  box-shadow: none;
}

.inner-page .button:hover {
  background: #ee256b;
  border-color: #ee256b;
  box-shadow: 0 16px 38px rgba(238, 37, 107, 0.22);
}

.inner-page .button-secondary {
  background: transparent;
  color: #050605;
  border-color: rgba(20, 22, 20, 0.28);
}

.inner-page .button-secondary:hover {
  color: #fff;
  border-color: #050605;
  background: #050605;
}

.inner-page .button-glass {
  background: #ffd400;
  border-color: #ffd400;
  color: #111;
}

.inner-page .eyebrow {
  color: #ee256b;
  text-shadow: none;
}

.inner-page .services-hero,
.inner-page .premium-hero {
  min-height: clamp(560px, 76vh, 760px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #141614;
  background:
    radial-gradient(circle at 76% 18%, rgba(238, 37, 107, 0.08), transparent 26%),
    linear-gradient(180deg, #f7faf6 0%, #eef3ef 100%);
  isolation: isolate;
}

.inner-page .legal-hero {
  --hero-image: url("/assets/legal-compliance-hero.jpg");
}

.inner-page .services-hero::before,
.inner-page .premium-hero::before {
  content: "";
  position: absolute;
  top: clamp(90px, 16vh, 138px);
  right: max(16px, calc((100vw - 1160px) / 2));
  bottom: clamp(82px, 12vh, 112px);
  width: min(44vw, 520px);
  z-index: 0;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(243, 246, 242, 0.72), transparent 22%, transparent 76%, rgba(243, 246, 242, 0.74)),
    linear-gradient(180deg, rgba(5, 6, 5, 0.02), rgba(5, 6, 5, 0.12)),
    var(--hero-image, url("/assets/services-hero-industries.jpg")) center / cover;
  box-shadow: 0 34px 110px rgba(20, 22, 20, 0.14);
  filter: saturate(0.92) contrast(1.02);
}

.inner-page .services-hero::after,
.inner-page .premium-hero::after {
  content: "";
  position: absolute;
  top: clamp(110px, 18vh, 154px);
  right: max(16px, calc((100vw - 1160px) / 2 + 420px));
  bottom: clamp(104px, 15vh, 138px);
  width: min(11vw, 132px);
  z-index: 0;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(20, 22, 20, 0.08)),
    var(--hero-image, url("/assets/services-hero-industries.jpg")) center / cover;
  opacity: 0.46;
  filter: grayscale(0.2) saturate(0.76);
}

.inner-page .services-hero-inner,
.inner-page .premium-hero-inner {
  width: min(1160px, calc(100% - 32px));
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(300px, 0.74fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding: clamp(96px, 13vw, 132px) 0 clamp(80px, 10vw, 112px);
}

.inner-page .services-hero:not(.premium-hero) .services-hero-inner > * {
  grid-column: 1;
}

.inner-page .services-hero:not(.premium-hero) .services-hero-inner {
  max-width: min(1160px, calc(100% - 32px));
}

.inner-page .services-hero:not(.premium-hero) .services-hero-inner > .eyebrow,
.inner-page .services-hero:not(.premium-hero) .services-hero-inner > h1,
.inner-page .services-hero:not(.premium-hero) .services-hero-inner > p {
  width: fit-content;
  max-width: min(650px, 100%);
}

.inner-page .services-hero:not(.premium-hero) .services-hero-inner > h1,
.inner-page .services-hero:not(.premium-hero) .services-hero-inner > p {
  padding: clamp(0.28rem, 0.8vw, 0.5rem) clamp(0.7rem, 1.8vw, 1rem);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.inner-page .premium-hero-copy,
.inner-page .services-hero-inner {
  position: relative;
  z-index: 1;
}

.inner-page .premium-hero-copy {
  grid-column: 1;
  max-width: min(620px, 100%);
  padding: clamp(1.1rem, 2.6vw, 1.7rem);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.93), rgba(247, 250, 246, 0.84)),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 34px 110px rgba(20, 22, 20, 0.16);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}

.inner-page .services-hero h1,
.inner-page .premium-hero-copy h1 {
  max-width: 580px;
  font-size: clamp(2.85rem, 5.6vw, 5.05rem);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: 0;
  color: #141614;
}

.inner-page .services-hero p:not(.eyebrow),
.inner-page .premium-hero-copy p:not(.eyebrow) {
  max-width: 490px;
  color: rgba(20, 22, 20, 0.68);
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  line-height: 1.62;
}

.inner-page .services-hero:not(.premium-hero) {
  min-height: clamp(520px, 70vh, 700px);
}

.inner-page .services-hero:not(.premium-hero) .services-hero-inner {
  padding: clamp(88px, 10vw, 112px) 0 clamp(68px, 8vw, 88px);
}

.inner-page .services-hero:not(.premium-hero) h1 {
  max-width: 650px;
  font-size: clamp(2.85rem, 5vw, 4.5rem);
}

.inner-page .premium-hero-copy .hero-actions,
.inner-page .hero-actions {
  margin-top: 1.35rem;
}

.inner-page .premium-hero-panel {
  position: relative;
  z-index: 1;
  grid-column: 2;
  min-height: 360px;
  align-self: center;
  align-content: end;
  padding: 1rem;
  border: 0;
  border-radius: 8px;
  background: #171918;
  color: #fff;
  box-shadow: 0 34px 90px rgba(20, 22, 20, 0.22);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.inner-page .premium-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 72% 8%, rgba(238, 37, 107, 0.24), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 42%);
  pointer-events: none;
}

.inner-page .premium-hero-panel span,
.inner-page .premium-hero-panel strong {
  position: relative;
  z-index: 1;
  min-height: 34px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
}

.inner-page .premium-hero-panel strong {
  min-height: 66px;
  border-radius: 8px;
  background: #fff;
  color: #141614;
  box-shadow: none;
}

.inner-page .section {
  width: min(1160px, calc(100% - 32px));
  padding: clamp(58px, 8vw, 104px) 0;
}

.inner-page .band {
  width: 100%;
  padding-top: clamp(70px, 9vw, 112px);
  padding-bottom: clamp(70px, 9vw, 112px);
  background: #171918;
  border: 0;
  color: #fff;
}

.inner-page .band h2,
.inner-page .band h3,
.inner-page .band summary {
  color: #fff;
}

.inner-page .band p,
.inner-page .band li {
  color: rgba(255, 255, 255, 0.68);
}

.inner-page .split,
.inner-page .contact,
.inner-page .portal-layout,
.inner-page .immersive,
.inner-page .founder-story,
.inner-page .about-story {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.inner-page h2 {
  color: #141614;
  font-size: clamp(2.15rem, 4.4vw, 4rem);
  font-weight: 560;
  line-height: 1;
}

.inner-page p {
  color: rgba(20, 22, 20, 0.66);
}

.inner-page .feature-card,
.inner-page .portal-panel,
.inner-page .insight-card,
.inner-page .job-card,
.inner-page .step-card,
.inner-page .proof-card,
.inner-page .testimonial-card,
.inner-page .faq-card,
.inner-page .value-card,
.inner-page .form-panel,
.inner-page .contact-card,
.inner-page .job-details,
.inner-page .steps li {
  border: 1px solid rgba(20, 22, 20, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.inner-page .feature-card:hover,
.inner-page .job-card:hover,
.inner-page .insight-card:hover,
.inner-page .testimonial-card:hover {
  border-color: rgba(20, 22, 20, 0.18);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 26px 80px rgba(20, 22, 20, 0.1);
  transform: translateY(-4px);
}

.inner-page .image-card,
.inner-page .split-hero-media {
  border: 0;
  border-radius: 8px;
  background: #dfe5df;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.inner-page .image-card img,
.inner-page .split-hero-media img,
.inner-page .card-image {
  filter: saturate(0.9) contrast(1.02);
}

.inner-page .service-panel,
.inner-page .industry-card {
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.inner-page .service-panel {
  min-height: 390px;
}

.inner-page .service-panel::before {
  background:
    linear-gradient(180deg, rgba(20, 22, 20, 0.22) 0%, rgba(20, 22, 20, 0.72) 48%, rgba(8, 10, 9, 0.96) 100%),
    var(--service-image) center / cover;
}

.inner-page .service-panel,
.inner-page .service-panel h2,
.inner-page .service-panel p,
.inner-page .service-panel .service-tag,
.inner-page .service-panel .service-link {
  color: #fff;
}

.inner-page .service-panel p {
  color: rgba(255, 255, 255, 0.9);
}

.inner-page .service-panel .service-tag {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.14);
}

.inner-page .service-panel .service-link {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.16);
}

.inner-page .service-tag,
.inner-page .pill,
.inner-page .tag {
  border-radius: 999px;
}

.inner-page .faq-card {
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}

.inner-page .faq-card summary {
  color: #141614;
}

.inner-page .testimonial-carousel::before {
  background: linear-gradient(90deg, #f3f6f2, rgba(243, 246, 242, 0));
}

.inner-page .testimonial-carousel::after {
  background: linear-gradient(270deg, #f3f6f2, rgba(243, 246, 242, 0));
}

.inner-page .carousel-dot {
  background: rgba(20, 22, 20, 0.16);
}

.inner-page .carousel-dot.is-active {
  background: #141614;
}

.inner-page .site-footer {
  background: #f3f6f2;
  color: #141614;
  border-top: 1px solid rgba(20, 22, 20, 0.08);
}

.inner-page .site-footer::before {
  content: none;
}

.inner-page .footer-shell {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.inner-page .footer-intro p,
.inner-page .footer-column a,
.inner-page .footer-contact a,
.inner-page .footer-contact span,
.inner-page .footer-contact div,
.inner-page .footer-bottom {
  color: rgba(20, 22, 20, 0.58);
}

.inner-page .footer-column h2,
.inner-page .footer-contact h2 {
  color: #141614;
  font-size: clamp(0.64rem, 0.72vw, 0.74rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.inner-page .footer-contact {
  background: #171918;
  color: #fff;
}

.inner-page .footer-contact h2,
.inner-page .footer-contact a,
.inner-page .footer-contact div {
  color: #fff;
}

.inner-page .footer-contact span {
  color: rgba(255, 255, 255, 0.56);
}

@media (max-width: 860px) {
  .inner-page .services-hero,
  .inner-page .premium-hero {
    min-height: 0;
  }

  .inner-page .services-hero::before,
  .inner-page .premium-hero::before {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: min(100% - 32px, 520px);
    height: 300px;
    margin: 86px auto 0;
    grid-row: 1;
  }

  .inner-page .services-hero::after,
  .inner-page .premium-hero::after {
    display: none;
  }

  .inner-page .services-hero-inner,
  .inner-page .premium-hero-inner {
    grid-template-columns: 1fr;
    padding: 32px 0 60px;
  }

  .inner-page .premium-hero-copy,
  .inner-page .premium-hero-panel,
  .inner-page .services-hero:not(.premium-hero) .services-hero-inner > * {
    grid-column: auto;
  }

  .inner-page .premium-hero-panel {
    min-height: 0;
  }

  .inner-page .split,
  .inner-page .contact,
  .inner-page .portal-layout,
  .inner-page .immersive,
  .inner-page .founder-story,
  .inner-page .about-story {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .inner-page .services-hero h1,
  .inner-page .premium-hero-copy h1 {
    font-size: clamp(2.55rem, 14vw, 3.5rem);
  }

  .inner-page .premium-hero-copy {
    padding: 0;
  }

  .inner-page .premium-hero-copy .hero-actions,
  .inner-page .hero-actions {
    display: flex;
  }
}

/* Paraform-inspired homepage sections below the cinematic hero. */
.home-paraform {
  background: #f3f6f2;
}

.home-paraform main > section:not(.hero) {
  color: #141614;
}

.home-paraform .proof-rail {
  width: min(1160px, calc(100% - 32px));
  margin: clamp(54px, 7vw, 86px) auto 0;
  transform: none;
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.4vw, 1rem);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-paraform .proof-copy {
  padding: 0;
}

.home-paraform .proof-copy h2,
.home-paraform main > section:not(.hero) h2 {
  color: #141614;
  font-weight: 560;
  line-height: 1;
}

.home-paraform .metrics article,
.home-paraform .feature-card,
.home-paraform .proof-card,
.home-paraform .testimonial-card,
.home-paraform .steps li,
.home-paraform .form-panel,
.home-paraform .contact-card {
  border: 1px solid rgba(20, 22, 20, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-paraform .metrics article {
  min-height: 164px;
  align-content: end;
}

.home-paraform .metrics strong {
  color: #141614;
  font-weight: 640;
}

.home-paraform .metrics span,
.home-paraform main > section:not(.hero) p {
  color: rgba(20, 22, 20, 0.64);
}

.home-paraform .section {
  width: min(1160px, calc(100% - 32px));
  padding: clamp(62px, 8vw, 108px) 0;
}

.home-paraform .immersive,
.home-paraform .split,
.home-paraform .contact {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.home-paraform .immersive-copy,
.home-paraform .section-heading {
  max-width: 640px;
}

.home-paraform .image-stack {
  min-height: 500px;
}

.home-paraform .image-card {
  border: 0;
  border-radius: 8px;
  background: #dfe5df;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-paraform .image-card img,
.home-paraform .card-image {
  filter: saturate(0.9) contrast(1.02);
}

.home-paraform .feature-card {
  min-height: 238px;
}

.home-paraform .feature-card:hover,
.home-paraform .proof-card:hover,
.home-paraform .testimonial-card:hover {
  border-color: rgba(20, 22, 20, 0.18);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 26px 80px rgba(20, 22, 20, 0.1);
  transform: translateY(-4px);
}

.home-paraform .flow-system,
.home-paraform .band {
  width: 100%;
  max-width: none;
  padding: clamp(76px, 9vw, 118px) max(16px, calc((100vw - 1160px) / 2));
  background: #171918;
  color: #fff;
}

.home-paraform .flow-system h2,
.home-paraform .band h2,
.home-paraform .flow-system h3,
.home-paraform .band h3 {
  color: #fff;
}

.home-paraform .flow-system p,
.home-paraform .band p,
.home-paraform .band span {
  color: rgba(255, 255, 255, 0.68);
}

.home-paraform .flow-map {
  border: 0;
  border-radius: 8px;
  background:
    radial-gradient(circle at 72% 8%, rgba(238, 37, 107, 0.2), transparent 30%),
    #0f1110;
  box-shadow: none;
}

.home-paraform .flow-map span,
.home-paraform .flow-map strong {
  border-radius: 8px;
}

.home-paraform .job-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.home-paraform .band .job-card h3,
.home-paraform .band .job-card > strong {
  color: #fff;
}

.home-paraform .band .job-card p,
.home-paraform .band .job-details li {
  color: rgba(255, 255, 255, 0.78);
}

.home-paraform .band .job-details {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.9);
}

.home-paraform .band .job-details summary {
  color: #102a43;
}

.home-paraform .band .job-details p,
.home-paraform .band .job-details li {
  color: rgba(16, 42, 67, 0.72);
}

.home-paraform .featured-roles {
  background:
    radial-gradient(circle at 15% 12%, rgba(238, 37, 107, 0.2), transparent 34%),
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.1), transparent 28%),
    #171918;
  color: #fff;
}

.home-paraform .featured-roles h2,
.home-paraform .featured-roles h3,
.home-paraform .featured-roles .job-card > strong {
  color: #fff;
}

.home-paraform .featured-roles p,
.home-paraform .featured-roles .job-card p,
.home-paraform .featured-roles .job-details li {
  color: rgba(255, 255, 255, 0.86);
}

.home-paraform .featured-roles .job-card {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.home-paraform .featured-roles .job-details {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
}

.home-paraform .featured-roles .job-details summary {
  color: #fff;
}

.home-paraform .featured-roles .job-details p,
.home-paraform .featured-roles .job-details li {
  color: rgba(255, 255, 255, 0.82);
}

.home-paraform .band.featured-roles > .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.home-paraform .band > .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.home-paraform .industry-card {
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.home-paraform .industry-card::before {
  background:
    linear-gradient(180deg, rgba(20, 22, 20, 0.03) 0%, rgba(20, 22, 20, 0.52) 62%, rgba(20, 22, 20, 0.86) 100%),
    var(--industry-image) center / cover;
}

.home-paraform .testimonial-carousel::before {
  background: linear-gradient(90deg, #f3f6f2, rgba(243, 246, 242, 0));
}

.home-paraform .testimonial-carousel::after {
  background: linear-gradient(270deg, #f3f6f2, rgba(243, 246, 242, 0));
}

.home-paraform .carousel-dot {
  background: rgba(20, 22, 20, 0.16);
}

.home-paraform .carousel-dot.is-active {
  background: #141614;
}

.home-paraform .faq-card,
.home-paraform .steps li {
  background: transparent;
}

.home-paraform main > section:not(.hero) .button:not(.button-glass),
.home-paraform .site-footer .button:not(.button-glass) {
  border: 1px solid #050605;
  border-radius: 999px;
  background: #050605;
  color: #fff;
  box-shadow: none;
}

.home-paraform main > section:not(.hero) .button-secondary:not(.button-glass),
.home-paraform .site-footer .button-secondary:not(.button-glass) {
  background: transparent;
  color: #050605;
  border-color: rgba(20, 22, 20, 0.28);
}

.home-paraform .band .button-secondary,
.home-paraform .flow-system .button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}

.home-paraform main > section:not(.hero) .button:not(.button-glass):hover,
.home-paraform .site-footer .button:not(.button-glass):hover {
  background: #ee256b;
  border-color: #ee256b;
  box-shadow: 0 16px 38px rgba(238, 37, 107, 0.22);
}

.home-paraform .contact-showcase {
  align-items: stretch;
}

.home-paraform .contact-card-media {
  border-radius: 8px 8px 0 0;
}

.home-paraform .site-footer {
  background: #f3f6f2;
  color: #141614;
  border-top: 1px solid rgba(20, 22, 20, 0.08);
}

.home-paraform .site-footer::before {
  content: none;
}

.home-paraform .footer-shell {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.home-paraform .footer-column h2,
.home-paraform .footer-contact h2 {
  color: #141614;
  font-size: clamp(0.64rem, 0.72vw, 0.74rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.home-paraform .footer-intro p,
.home-paraform .footer-column a,
.home-paraform .footer-bottom {
  color: rgba(20, 22, 20, 0.58);
}

.home-paraform .footer-contact {
  background: #171918;
  color: #fff;
}

.home-paraform .footer-contact h2,
.home-paraform .footer-contact a,
.home-paraform .footer-contact div {
  color: #fff;
}

.home-paraform .footer-contact span {
  color: rgba(255, 255, 255, 0.56);
}

@media (max-width: 860px) {
  .home-paraform .proof-rail,
  .home-paraform .immersive,
  .home-paraform .split,
  .home-paraform .contact {
    grid-template-columns: 1fr;
  }

  .home-paraform .proof-rail {
    margin-top: 42px;
  }

  .home-paraform .image-stack {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .home-paraform .section {
    padding: 54px 0;
  }

  .home-paraform .proof-rail {
    width: min(100% - 32px, 1160px);
  }
}
